Wiki

Changes between Version 2 and Version 3 of Nugget

Show
Ignore:
Timestamp:
12/09/10 21:13:28 (14 years ago)
Author:
todd.a
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Nugget

    v2 v3  
    33Nugget is a Cobra library that provides binary serialization for main primitive types like integers, floating point values, dates, strings, lists, and dictionaries. 
    44 
    5 The main advantage over the serialization libraries found in System.Runtime is that Nugget's encoded objects are only a fraction of the serialization libraries. The encoding is also designed to be simple, comparable to that of JSON. 
     5The main advantage over the serialization libraries found in '''System.Runtime''' is that Nugget's encoded objects are only a fraction of the serialization libraries. The encoding is also designed to be simple, comparable to that of JSON. 
     6 
     7== Supported Types == 
     8 * Dictionaries with a String key and Object value 
     9 * Lists of Objects 
     10 * int16, int, int64 
     11 * uint16, uint, uint64 
     12 * float (System.Double) 
     13 * bool 
     14 * Guid 
     15 * !DateTime 
     16 * nil 
     17 * String 
     18 * uint8[] - binary data as a byte array 
    619 
    720== Example ==