Implementing IEquatable in class marked with DataContract. Does it work?
- by Rire1979
What I am trying to accomplish is to be able to use List<>.Contains() using the custom data structure(s) returned by the WCF service.
I implemented the IEquatable<>.Equals but it's not really working on the client side. Contains() always returns false. I am wondering if the Contains() method is actually part of the class when it's put together on the client side.