Aan
Aan

Reputation: 12890

Difference between two statements

Is there any difference between:

this->textBox1->Text = this->textBox1->Text + ("2");

and this:

this->textBox1->Text = this->textBox1->Text + "2";

or it is just a syntactic sugar?

Upvotes: 0

Views: 56

Answers (1)

SinisterMJ
SinisterMJ

Reputation: 3509

That is the exactly same, so no difference as far as the result goes. The compiler first will evaluate whats in the brackets, since it is just ("2"), it will result in "2", therefore the same as your second code.

Upvotes: 2

Related Questions