ArtemisComm.Utility.ToInt64 C# (CSharp) Method

ToInt64() public static method

public static ToInt64 ( this me ) : long
me this
return long
        public static long ToInt64(this Stream me)
        {
            if (me != null)
            {
                byte[] buffer = new byte[8];

                me.Read(buffer, 0, 8);
                return BitConverter.ToInt64(buffer, 0);
            }
            else
            {
                return 0;
            }
        }
        public static float ToSingle(this Stream me)