diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-11-15 17:41:14 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-11-15 17:41:14 +0000 |
commit | f1e413e914b9f03607194757848bab1ed4f401a3 (patch) | |
tree | 0cc0dbba61295b47bf343d439a4234123c4369a3 /cs-dotnet/src/tests/ints.cs | |
parent | 63628550708a616c5c58bc5c707db1e7fd9cd7c2 (diff) | |
download | libgats-f1e413e914b9f03607194757848bab1ed4f401a3.tar.gz libgats-f1e413e914b9f03607194757848bab1ed4f401a3.tar.bz2 libgats-f1e413e914b9f03607194757848bab1ed4f401a3.tar.xz libgats-f1e413e914b9f03607194757848bab1ed4f401a3.zip |
Accidentally included a dll, oops. Also, gats null, and gats float work
correctly now and are tested against the python implementation.
Diffstat (limited to '')
-rw-r--r-- | cs-dotnet/src/tests/ints.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cs-dotnet/src/tests/ints.cs b/cs-dotnet/src/tests/ints.cs index 7099995..766b667 100644 --- a/cs-dotnet/src/tests/ints.cs +++ b/cs-dotnet/src/tests/ints.cs | |||
@@ -1,4 +1,5 @@ | |||
1 | using System; | 1 | using System; |
2 | using System.Globalization; | ||
2 | using System.IO; | 3 | using System.IO; |
3 | using Com.Xagasoft.Gats; | 4 | using Com.Xagasoft.Gats; |
4 | 5 | ||
@@ -11,5 +12,7 @@ class Ints | |||
11 | GatsObject obj = GatsObject.Read( file ); | 12 | GatsObject obj = GatsObject.Read( file ); |
12 | Console.WriteLine("Read type: " + obj.GetType() ); | 13 | Console.WriteLine("Read type: " + obj.GetType() ); |
13 | Console.WriteLine("Read int: " + ((GatsInteger)obj).Value ); | 14 | Console.WriteLine("Read int: " + ((GatsInteger)obj).Value ); |
15 | |||
16 | Console.WriteLine("Float? " + double.Parse("0x1.62e42fefa39efp+2") ); | ||
14 | } | 17 | } |
15 | } | 18 | } |