Constructor to create a classical result based on the number of qubits
in the register and the value of the result. (Which should be treated like
an unsigned long, but long is used since it is CLS compliant.)

C# | Visual Basic | Visual C++ |
public ClassicalResult( int NumberOfQubits, long Value )
Public Sub New ( _ NumberOfQubits As Integer, _ Value As Long _ )
public: ClassicalResult( int NumberOfQubits, long long Value )

- NumberOfQubits (Int32)
- Number of qubits the result represents
- Value (Int64)
- The value, to treat as an unsigned integer (so it is known which bits to toggle on).