> Yeah, you can actually write something like
> int Count = 5;
> string Text = "Count = " + Count;
>
> without needeing an itoa() or anything. What's > up with that???
so, i suppose it reads your mind and converts
decimal 5 into whatever base you mean (in ltoa()
you have to specifically say that)
> Yeah, you can actually write something like
> int Count = 5;
> string Text = "Count = " + Count;
>
> without needeing an itoa() or anything. What's > up with that???
so, i suppose it reads your mind and converts
decimal 5 into whatever base you mean (in ltoa()
you have to specifically say that)