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

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -