TInt to TBuf How ....?

Login to reply to this topic.
Mon, 2006-09-18 18:54
Joined: 2006-03-23
Forum posts: 7
How to Convert TInt Values to TBuf ?

* TLex can convert TBuf -> TInt use Val
But i Want Opposite

Mon, 2006-09-18 19:44
Joined: 2005-11-20
Forum posts: 1058
Re: TInt to TBuf How ....?
TBuf::Num

René Brunner

Tue, 2006-09-19 11:31
Joined: 2006-07-21
Forum posts: 20
Re: TInt to TBuf How ....?
You can do:


     TInt num;
     num = 6;
     TBuf<2> numBuf;
     numBuf.AppendNum(num);
  • Login to reply to this topic.