Mosa.ClassLib.BinaryFormat.BinaryFormat C# (CSharp) Method

BinaryFormat() public method

Initializes a new instance of the BinaryFormat struct.
public BinaryFormat ( uint length ) : System.Text
length uint The length.
return System.Text
        public BinaryFormat(uint length)
        {
            data = new byte[length];
        }

Same methods

BinaryFormat::BinaryFormat ( byte data ) : System.Text