find all occurrences of comparison with == in visual studio
- by Emiswelt
Hi there
I made the mistake of using == for comparing IP addresses instead of using the equals() method of the IPAddress class in C#, which will result in the comparison of references instead of values.
Since the solution I am currently working on is very large for a one-man project ( 100.000 lines of source code), I am very sure that I still…