How I can write to console a RInteger variable?
Thank you for your help!
How I can write to console a RInteger variable?
Thank you for your help!
RInteger is not really a number what you really want to see. The closest thing is getting its bytes with BufferLC, and displaying them in hexadecimal formCode:HBufC8 *bytes=integer.BufferLC()); for(TInt i=0;i<bytes->Length();i++) console->Printf(_L("%0x2"),(*bytes)[i]); CleanupStack::PopAndDestroy(); // bytes