Changes between Version 2 and Version 3 of Nugget
- Timestamp:
- 12/09/10 21:13:28 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Nugget
v2 v3 3 3 Nugget is a Cobra library that provides binary serialization for main primitive types like integers, floating point values, dates, strings, lists, and dictionaries. 4 4 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. 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. 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 6 19 7 20 == Example ==