How can I put the below statement in C#.Net.
If(strValue =="ABC" || strValue =="EFG" || strValue =="IJK") Some code implementation.
It gives me error (Operand || cannot be applied to type bool or string) , when I use the above statement.
How can I put the below statement in C#.Net.
If(strValue =="ABC" || strValue =="EFG" || strValue =="IJK") Some code implementation.
It gives me error (Operand || cannot be applied to type bool or string) , when I use the above statement.