示例#1
0
        } // end function ReadBytesAsUInt32LE

        public static unsafe UInt64 ReadBytesAsUInt64LE(IntPtr a_in, Int32 a_index)
        {
            UInt64 result = *(UInt64 *)((byte *)a_in + a_index);

            return(Converters.le2me_64(result));
        } // end function ReadBytesAsUInt64LE
示例#2
0
        }     // end function le64_copy

        public static unsafe UInt32 ReadBytesAsUInt32LE(IntPtr a_in, Int32 a_index)
        {
            UInt32 result = *(UInt32 *)((byte *)a_in + a_index);

            return(Converters.le2me_32((Int32)result));
        } // end function ReadBytesAsUInt32LE