Hi All,

I'm using a library (Crypto++) which defines an Integer (arbitrary size). The Integer class defines operator<<.

I find that I have to continually copy and paste conversion code to display the Integer as a string.

Is there an easy way to perform the following?

Code:
CString s;
CryptoPP::Integer n;
s << n;
Thanks,
Jeff