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
Post a Comment