KJFramework.Message 1.4.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package KJFramework.Message --version 1.4.1
NuGet\Install-Package KJFramework.Message -Version 1.4.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="KJFramework.Message" Version="1.4.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add KJFramework.Message --version 1.4.1
#r "nuget: KJFramework.Message, 1.4.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install KJFramework.Message as a Cake Addin
#addin nuget:?package=KJFramework.Message&version=1.4.1

// Install KJFramework.Message as a Cake Tool
#tool nuget:?package=KJFramework.Message&version=1.4.1

KJFramework.Messages, 提供了.NET平台的高性能序列化/反序列化解决方案。

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.6.0 1,844 12/19/2013
1.5.0 1,536 5/7/2013
1.4.3 1,358 4/7/2013
1.4.2 1,284 4/1/2013
1.4.1 1,263 3/28/2013
1.4.0 1,344 1/5/2013
1.3.2 1,293 12/24/2012
1.3.1.1 1,266 12/19/2012
1.3.0 1,516 9/17/2012
1.2.0 1,362 8/23/2012
1.1.1 1,372 8/10/2012
1.1.0 1,345 7/16/2012
1.0.0 1,272 7/16/2012

1. 在过去的日志呈现方式中,我们总是会为二进制数来呈现到文本文件上的格式而发愁,现在,新的一个版本中,我们重写了
   关于这一部分的代码,您将会看到我们使用了一种新的,更加正式的方式来将二进制数组呈现到文本文件中。
2. 重新规整了DataHelper(轻量级序列化帮助器), 重整后的效果,使其能够支持上一个版本的优化策略(使用非托管内存来序列化)
3. 随着针对于序列化和反序列化的优化策略,我们不难发现,我们为IIntellectTypeProcessor接口中添加了太多的重载方法,以至于当我们
   开发一个支持新类型的IIntellectTypeProcessor时感到束手无策,因为我们不得不要完成接口中的每一个方法。在新的版本中,我们也
考虑到了这点,我们移除了在IIntellectTypeProcessor接口中无用的或冗余的方法,这样就可以使我们的使用者,将精力放在重点的方法上。
4. 为DataHelper增加了单元测试