Ext2.Block.GetUInt C# (CSharp) Method

GetUInt() public method

public GetUInt ( uint offset ) : uint
offset uint
return uint
		public uint GetUInt (uint offset)
		{
			uint value = this.buffer [offset++];
			value += (uint) (this.buffer [offset++] << 8);
			value += (uint) (this.buffer [offset++] << 16);
			value += (uint) (this.buffer [offset++] << 24);

			return value;
		}