FSO.Files.Utils.IoBuffer.FromBytes C# (CSharp) Méthode

FromBytes() public static méthode

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

Same methods

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