So I'm trying to change one array of a string because I need to replace a dot (.) into a comma (,)
Here's what I've tried :
if(this->textBox1->Text[1]='.')
{
this->textBox1->Text[1]=',';
}
But that doesn't work as expected.
Is the problem coming from the fact I'm trying to change from the textbox ?