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);
			}
		}