System.Threading.Snzi.LeafNode.Decode C# (CSharp) 메소드

Decode() 개인적인 메소드

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