6 lines
256 B
C#
6 lines
256 B
C#
namespace BlendFile;
|
|
|
|
public static class ByteArrayExt{
|
|
public static long ToMemAddr(this Byte[] bytes, bool isLittleEndian = true) =>
|
|
BitConverter.ToInt64(isLittleEndian == BitConverter.IsLittleEndian ? bytes : bytes.Reverse().ToArray(), 0);
|
|
} |