Click here to Skip to main content
15,886,137 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 281.9K   1.2K   175  
A framework for object serializiation/deserialization that is many times faster and yields a compact output.
<html dir="LTR">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=Windows-1252" />
    <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5" />
    <title>INxBinaryWriter Members</title>
    <xml>
    </xml>
    <link rel="stylesheet" type="text/css" href="MSDN.css" />
  </head>
  <body id="bodyID" class="dtBODY">
    <div id="nsbanner">
      <div id="bannerrow1">
        <table class="bannerparthead" cellspacing="0">
          <tr id="hdr">
            <td class="runninghead">OpenNxSerialization API Reference</td>
            <td class="product">
            </td>
          </tr>
        </table>
      </div>
      <div id="TitleRow">
        <h1 class="dtH1">INxBinaryWriter Members
					</h1>
      </div>
    </div>
    <div id="nstext">
      <p>
        <a href="NeXtreme.OpenNxSerialization.IO.INxBinaryWriter.html">INxBinaryWriter overview</a>
      </p>
      <h4 class="dtH4">Public Instance Properties</h4>
      <div class="tablediv">
        <table class="dtTABLE" cellspacing="0">
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="NeXtreme.OpenNxSerialization.IO.INxBinaryWriter.BaseStream.html">BaseStream</a></td><td width="50%"> Returns the underlying <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemIOStreamClassTopic.asp">Stream</a> object. </td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="NeXtreme.OpenNxSerialization.IO.INxBinaryWriter.Context.html">Context</a></td><td width="50%"> Returns the current <a href="NeXtreme.OpenNxSerialization.IO.NxSerializationContext.html">NxSerializationContext</a> object. </td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="NeXtreme.OpenNxSerialization.IO.INxBinaryWriter.SurrogateSelector.html">SurrogateSelector</a></td><td width="50%"> Returns the associated <a href="NeXtreme.OpenNxSerialization.INxTypeSurrogateSelector.html">INxTypeSurrogateSelector</a> instance. </td></tr></table>
      </div>
      <h4 class="dtH4">Public Instance Methods</h4>
      <div class="tablediv">
        <table class="dtTABLE" cellspacing="0">
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="NeXtreme.OpenNxSerialization.IO.INxBinaryWriter.Write_overloads.html">Write</a></td><td width="50%">Overloaded.  Writes <i>value</i> to the current stream and advances the stream position. This method writes directly to the underlying stream. </td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="NeXtreme.OpenNxSerialization.IO.INxBinaryWriter.WriteNull.html">WriteNull</a></td><td width="50%"> Writes <i>null</i> to the current stream and advances the stream position. </td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="NeXtreme.OpenNxSerialization.IO.INxBinaryWriter.WriteObject_overloads.html">WriteObject</a></td><td width="50%">Overloaded.  Writes <i>graph</i> to the current stream and advances the stream position. </td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="NeXtreme.OpenNxSerialization.IO.INxBinaryWriter.WriteObjectAs_overloads.html">WriteObjectAs</a></td><td width="50%">Overloaded.  Writes <i>graph</i> to the current stream and advances the stream position. </td></tr></table>
      </div>
      <h4 class="dtH4">See Also</h4>
      <p>
        <a href="NeXtreme.OpenNxSerialization.IO.INxBinaryWriter.html">INxBinaryWriter Interface</a> | <a href="NeXtreme.OpenNxSerialization.IO.html">NeXtreme.OpenNxSerialization.IO Namespace</a></p>
      <hr />
      <div id="footer">
        <p>
          <a>Copyright (C) 2006 - 2008, NeXtreme Innovations. All rights reserved.</a>
        </p>
        <p>Generated from assembly NeXtreme.OpenNxSerialization [1.5.0.0]</p>
      </div>
    </div>
  </body>
</html>

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