c++ cli - How do I concatenate a dot to a string? -


i'm trying concatenate dot ( "." ) in visual c++ windows form application. code is:

string ^a;       a=string::concat(values->text,".");  valores->text= a; 

but if text has 3, changes .3 instead of 3..

changing to:

a=string::concat(".", values-> text) 

doesn't fix it.

a += "."; 

( that's there it! )


Comments

Popular posts from this blog

iphone - Three second countdown in cocos2d -

hyperlink - how to do url routing in php -

c - Avoiding Extra Malloc in Linked List (node->next = NULL) -