problem with c4d_string.h

On 16/11/2013 at 07:50, xxxxxxxx wrote:

User Information:
Cinema 4D Version:   15 
Platform:   Windows  ;   
Language(s) :     C++  ;

---------
well the problem in VS2012 and that c4d_string.h header , simply I can't call any function from it as it appears to be undefined ... like IntToString() for example , also it doesn't do autocomplete for anything in that header

On 26/11/2013 at 06:46, xxxxxxxx wrote:

IntToString() is a static member function of the String class.

Best,
-Niklas

On 26/11/2013 at 14:10, xxxxxxxx wrote:

so how to use it?

what I do is something like:

Int32 x = 10;
GePrint(IntToString(x));

and it simply doesn't compile at all "though I have included header , and when I right click and find definition/declaration of function it opens the header"

On 26/11/2013 at 14:32, xxxxxxxx wrote:

As I said, it's a static member function.

String::IntToString(x);

On 26/11/2013 at 16:40, xxxxxxxx wrote:

ah I see now , thanks a lot "I think I was dumb :D "