aboutsummaryrefslogtreecommitdiff
path: root/cs-dotnet/src/tests
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2012-11-17 18:10:06 +0000
committerMike Buland <eichlan@xagasoft.com>2012-11-17 18:10:06 +0000
commitf68cfc5a0a8a07a2729636b1a1bedc41d2de738d (patch)
tree40fc14f900b14e5db66b54ddf9b2e8bfb0035dae /cs-dotnet/src/tests
parent38f03bf3279c5e0351539777db52bb9f1a4bc614 (diff)
downloadlibgats-f68cfc5a0a8a07a2729636b1a1bedc41d2de738d.tar.gz
libgats-f68cfc5a0a8a07a2729636b1a1bedc41d2de738d.tar.bz2
libgats-f68cfc5a0a8a07a2729636b1a1bedc41d2de738d.tar.xz
libgats-f68cfc5a0a8a07a2729636b1a1bedc41d2de738d.zip
Added XML standard in-code documentation, also GatsList and GatsDictionary
helpers.
Diffstat (limited to '')
-rw-r--r--cs-dotnet/src/tests/dictionary.cs8
1 files changed, 8 insertions, 0 deletions
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
37 d.Add("float", new GatsFloat( 87.332 ) ); 37 d.Add("float", new GatsFloat( 87.332 ) );
38 d.Add("string", new GatsString("Yup, a string") ); 38 d.Add("string", new GatsString("Yup, a string") );
39 d.Add("bool", new GatsBoolean( false ) ); 39 d.Add("bool", new GatsBoolean( false ) );
40 d.Add("long", 998877665544L );
41 d.Add("int2", 998877 );
42 d.Add("short", (short)9988 );
43 d.Add("byte", (byte)99 );
44 d.Add("float2", 87.332F );
45 d.Add("double", 87.332D );
46 d.Add("string2", "Yup, a string" );
47 d.Add("bool2", false );
40 Write( d, ms ); 48 Write( d, ms );
41 ms.Seek( 0, SeekOrigin.Begin ); 49 ms.Seek( 0, SeekOrigin.Begin );
42 Read( ms ); 50 Read( ms );