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

Decode() private method

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