From f68cfc5a0a8a07a2729636b1a1bedc41d2de738d Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Sat, 17 Nov 2012 18:10:06 +0000 Subject: Added XML standard in-code documentation, also GatsList and GatsDictionary helpers. --- cs-dotnet/src/tests/dictionary.cs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'cs-dotnet/src/tests/dictionary.cs') diff --git a/cs-dotnet/src/tests/dictionary.cs b/cs-dotnet/src/tests/dictionary.cs index b97cb7d..78fec38 100644 --- a/cs-dotnet/src/tests/dictionary.cs +++ b/cs-dotnet/src/tests/dictionary.cs @@ -37,6 +37,14 @@ public class Test d.Add("float", new GatsFloat( 87.332 ) ); d.Add("string", new GatsString("Yup, a string") ); d.Add("bool", new GatsBoolean( false ) ); + d.Add("long", 998877665544L ); + d.Add("int2", 998877 ); + d.Add("short", (short)9988 ); + d.Add("byte", (byte)99 ); + d.Add("float2", 87.332F ); + d.Add("double", 87.332D ); + d.Add("string2", "Yup, a string" ); + d.Add("bool2", false ); Write( d, ms ); ms.Seek( 0, SeekOrigin.Begin ); Read( ms ); -- cgit v1.2.3