Reporter | Jura Gorohovsky (gorohoroh) |
---|---|
Created | Feb 19, 2011 12:15:59 PM |
Updated | Jan 13, 2012 10:14:14 PM |
Resolved | Jan 13, 2012 10:14:14 PM |
Priority | Normal |
Type | Bug |
Fix versions | No Fix versions |
State | Won't fix |
Assignee | eugene legkiy (jenya.legkiy) |
Subsystem | No subsystem |
Affected versions | No Affected versions |
Fixed in build | No Fixed in build |
Original != operator:
Applying the Create '==' operator quick-fix results in:
public static bool operator !=(Foo lhs, Foo rhs) { return !(lhs == rhs); }
Applying the Create '==' operator quick-fix results in:
public static bool operator ==(Foo lhs, Foo rhs) { return !(lhs != rhs); }