Is there a quick way to compare equality of more than one values in C#?
something like:
if (5==6==2==2){
//do something
}
Thanks
|
Is there a quick way to compare equality of more than one values in C#?
Thanks |
|||
|
|
This could help :) |
|||||
|
|
|||||||||||||||||||
|
|
In C#, an equality operator ( The comparison
which evaluates to
which would try to compare a The way to do multiple comparison is what @Joachim Sauer suggested:
|
||||
|
|
|
No this is not possible, you have to split it into separate statements.
Good luck |
|||
|
|
|
There is no direct way to do it using C#, but you can go with some helper class. Check out this VB.NET topic dedicated to this problem http://stackoverflow.com/questions/686485/vb-net-test-multiple-values-for-equality |
|||
|
|