FSO.Files.Utils.IoBuffer.FromBytes C# (CSharp) Method

FromBytes() public static method

Creates a new IOBuffer instance from a byte array.
public static FromBytes ( byte bytes ) : IoBuffer
bytes byte The byte array to use.
return IoBuffer
        public static IoBuffer FromBytes(byte[] bytes)
        {
            return FromStream(new MemoryStream(bytes));
        }

Same methods

IoBuffer::FromBytes ( byte bytes, ByteOrder order ) : IoBuffer