String^ c = "this";
String^ d = "that";
if (c == d) {}
instead you have to use code like
String^ c = "this";
String^ d = "that";
if (String::Compare(c,d) == 0) {
....
}
Why is this? And why does 0 equal true? hasn't 1 always been the value that equals true? Why did they have to change the entire language. It doesn't even resemble ANSI C++.


Sign In
Create Account

Guest_NeedHelp_*
Back to top










