Tce.RpcBinarySerializer.readLong C# (CSharp) Method

readLong() public static method

public static readLong ( BinaryReader reader ) : long
reader System.IO.BinaryReader
return long
        public static long readLong(BinaryReader reader)
        {
            long value =0;
            value = IPAddress.NetworkToHostOrder(reader.ReadInt64());
            return value;
        }