LargeInteger clarification
LargeInteger testVariable =null;(((long)(testVariable.HighPart) << 32) + (long)testVariable.LowPart);
What is testVariable.HighPart << 32 means? what's the output of the above line?
Also What is testVariable.LowPart means?
Why << 32 used along with HighPart property?