Click here to Skip to main content
15,893,790 members
Articles / Programming Languages / C#

A Fast/Compact Serialization Framework

Rate me:
Please Sign up or sign in to vote.
4.85/5 (37 votes)
13 Oct 2010GPL35 min read 283.6K   1.2K   175  
A framework for object serializiation/deserialization that is many times faster and yields a compact output.
/*

OpenNxSerialization Framework
Copyright (C) 2006 - 2008 "NeXtreme Innovations"
[The Next Xtreme Innovations]

This program is free software, distributed under the terms of
the GNU General Public License Version 2. See the "License.txt" file
at the top of the source tree.

*/
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Resources;

// General Information about an assembly is controlled through the following 
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: CLSCompliant(true)]
[assembly: AssemblyTitle("OpenNxSerialization")]
[assembly: AssemblyDescription("Evaluation and open-source derivative of NxSerialization (C)")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("NeXtreme Innovations")]
[assembly: AssemblyProduct("OpenNxSerialization")]
[assembly: AssemblyCopyright("Copyright (C) 2006 - 2008, NeXtreme Innovations. All rights reserved.")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible 
// to COM components.  If you need to access a type in this assembly from 
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("fe5a5687-7380-4d43-a0bb-47197da27cef")]

// Version information for an assembly consists of the following four values:
//
//      Major Version
//      Minor Version 
//      Build Number
//      Revision
//
// You can specify all the values or you can default the Revision and Build Numbers 
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.5.0.0")]
[assembly: AssemblyFileVersion("1.5.0.0")]

[assembly: NeutralResourcesLanguageAttribute("en")]

[assembly: InternalsVisibleTo("NeXtreme.OpenNxSerialization.Remoting, PublicKey=0024000004800000940000000602000000240000525341310004000001000100e36a8ac77a80d2b619548cfd92364eac7b60051893c68f53cd99483edce4e5b34c19972106fca6e993f64becf03ab402d69e44b469101cff69253e11addec74c0d7f6fe0cd4228ccfc3ef57c600e589ca1e7f3807f898f15ee20a567fdcea78117fa295d8de0c83a203593e9afea7e6e8182a4afe77665980413e84761523396")]
[assembly: InternalsVisibleTo("NeXtreme.OpenNxSerialization.Configuration, PublicKey=0024000004800000940000000602000000240000525341310004000001000100e36a8ac77a80d2b619548cfd92364eac7b60051893c68f53cd99483edce4e5b34c19972106fca6e993f64becf03ab402d69e44b469101cff69253e11addec74c0d7f6fe0cd4228ccfc3ef57c600e589ca1e7f3807f898f15ee20a567fdcea78117fa295d8de0c83a203593e9afea7e6e8182a4afe77665980413e84761523396")]

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Architect
Pakistan Pakistan
Let a = b ....... (1)
a - b = a - b
a^2 - ab = a^2 - ab
a^2 - ab = a^2 - b^2 (from 1)
a (a - b) = (a + b) (a - b)
a = (a + b) ...... (2)

if a = 1
1 = (1 + 1) (from 1 & 2)
1 = 2 !!

Comments and Discussions