BitField.BitFieldImmediate.GetValue C# (CSharp) Method

GetValue() private method

格納されている値を ulong 化して返す。
private GetValue ( ) : ulong
return ulong
		internal override ulong GetValue()
		{
			return (this.n & this.GetMask(this.msb, this.lsb)) >> this.lsb;
		}

Same methods

BitFieldImmediate::GetValue ( int m, int l ) : ulong