aboutsummaryrefslogtreecommitdiff
path: root/cs-dotnet/src/tests/dictionary.cs
diff options
context:
space:
mode:
Diffstat (limited to 'cs-dotnet/src/tests/dictionary.cs')
-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 );