aboutsummaryrefslogtreecommitdiff
path: root/cs-dotnet/src/tests/ints.cs
blob: 766b66769b5858b19b2e1ba622a7f3557984a145 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
using System.Globalization;
using System.IO;
using Com.Xagasoft.Gats;

class Ints
{
    static void Main()
    {
        FileStream file = new FileStream("test.gats", FileMode.Open,
                FileAccess.Read );
        GatsObject obj = GatsObject.Read( file );
        Console.WriteLine("Read type: " + obj.GetType() );
        Console.WriteLine("Read int: " + ((GatsInteger)obj).Value );

        Console.WriteLine("Float? " + double.Parse("0x1.62e42fefa39efp+2") );
    }
}