Mosa.ClassLib.BinaryFormat.SetChars C# (CSharp) 메소드

SetChars() 공개 메소드

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