PS3DumpChecker.Common.GetSizefrom C# (CSharp) Method

GetSizefrom() public static method

public static GetSizefrom ( byte &data ) : uint
data byte
return uint
        public static uint GetSizefrom(ref byte[] data)
        {
            SwapBytes(ref data);
            return BitConverter.ToUInt16(data, 0); ;
        }