System.Threading.Snzi.LeafNode.Decode C# (CSharp) Method

Decode() private method

private Decode ( int value, short &c, short &v ) : void
value int
c short
v short
return void
			void Decode (int value, out short c, out short v)
			{
				uint temp = (uint)value;
				c = (short)(temp & 0xFFFF);
				v = (short)(temp >> 16);
			}
		}