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

Encode() private method

private Encode ( short c, short v ) : int
c short
v short
return int
			int Encode (short c, short v)
			{
				uint temp = 0;
				temp |= (uint)c;
				temp |= ((uint)v) << 16;
				
				return (int)temp;
			}