I want to do som comparisons.
VB Code:
in c++ : if(X=="1") //(you can use it in C# to, I know) { //do something } c#. if(x.equals("1") { //do something }
that is OK, but what about this.
VB Code:
in c++: if(X!="1") { //do something } c#. if(x.??("1") //what to use here?? { //do something }
Anyone?
