Ext2.Block.Block C# (CSharp) Method

Block() public method

public Block ( uint offset, byte buffer ) : System
offset uint
buffer byte
return System
		public Block (uint offset, byte [] buffer)
		{
			this._offset = offset;
			this.buffer = buffer;
			this.dirty = false;
		}