Liquid XML Data Binder (C++, Java, VB6) / Reference / C++ / Reference / CBigInteger / C++ CBinaryData - CBinaryData
In This Topic
    C++ CBinaryData - CBinaryData
    In This Topic
    CBigInteger()
    CBigInteger(CBigInteger const& rcoLargeNumber)
    CBigInteger(int iNumber);
    CBigInteger(LONGLONG llNumber);
    CBigInteger(double dNumber);
    CBigInteger(LPCTSTR strNumber);
    CBigInteger(const CDecimal& dec);
      Property Description  
        Argument - rcoLargeNumber The Existing BigInteger to copy  
        Argument - iNumber The int value to initialise the BigInteger with  
        Argument - llNumber The LONGLONG (int64) value to initialise the BigInteger with  
        Argument - dNumber The double value to initialise the BigInteger with (fractional part is discarded)  
        Argument - strNumber A string representing a number to initialise the BigInteger with  
        Argument - dec A Decimal to initialise the BigInteger with (fractional part is discarded)  
        Description Constructor - initialises a new BigInteger object  
        Remarks
     
        Example