this->textBox1->Name = L"textBox1";
Although it seems to work without the L
, what is the purpose of the prefix? The way it is used doesn’t even make sense to a hardcore C programmer.
this->textBox1->Name = L"textBox1";
Although it seems to work without the L
, what is the purpose of the prefix? The way it is used doesn’t even make sense to a hardcore C programmer.