we are migrating project from c++ to c#. Can any one let me know when c++ return true or false for integer or double datatype value.
int a=3; or int a=-3; ...
It returns false for 0 and true otherwise.
false
0
true
If the variable is non-zero then it's return true
int a = 3; //or any negetive number like a = -3 if(a){ //This part will execute } else { }
2nd part:
int a = 0; if(a){ } else { //this part will execute }