Ext2.Block.SetByte C# (CSharp) Method

SetByte() public method

public SetByte ( uint offset, byte value ) : void
offset uint
value byte
return void
		public void SetByte (uint offset, byte value)
		{
			this.dirty = true;

			this.buffer [offset] = value;
		}