Ext2.Block.SetUShort C# (CSharp) Method

SetUShort() public method

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

			this.buffer [offset++] = (byte) (value & 0xFF);
			this.buffer [offset++] = (byte) ((value >> 8) & 0xFF);
		}