예제 #1
0
파일: NUtils.cs 프로젝트: MrxLoicx/Projects
 internal static unsafe byte[] GetBytes(float value)
 {
     return(BitConverterLE.GetUIntBytes((byte *)&value));
 }
예제 #2
0
파일: NUtils.cs 프로젝트: MrxLoicx/Projects
 internal static unsafe byte[] GetBytes(double value)
 {
     return(BitConverterLE.GetULongBytes((byte *)&value));
 }
예제 #3
0
파일: NUtils.cs 프로젝트: MrxLoicx/Projects
 internal static unsafe byte[] GetBytes(ushort value)
 {
     return(BitConverterLE.GetUShortBytes((byte *)&value));
 }