Exemplo n.º 1
0
        private static S32 U32ToS32(U32 buffer)
        {
            S32 result;

            result._length = buffer._length;
            result._value  = (int)buffer._value;

            return(result);
        }
Exemplo n.º 2
0
 public static void WriteU32(BinaryWriter writer, U32 value)
 {
     WriteS32(writer, U32ToS32(value));
 }