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

GetChars() public method

Gets the chars.
public GetChars ( uint offset, uint length ) : char[]
offset uint The offset.
length uint The length.
return char[]
        public char[] GetChars(uint offset, uint length)
        {
            char[] value = new char[length];

            for (uint index = 0; index < length; index++) { value[index] = GetChar(offset + index); }

            return value;
        }