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

SetChars() public method

Sets the chars.
public SetChars ( uint offset, char value ) : void
offset uint The offset.
value char The value.
return void
        public void SetChars(uint offset, char[] value)
        {
            for (uint index = 0; index < value.Length; index++) { data[offset + index] = (byte)value[index]; }
        }