Modify List.Contains behavior

后端 未结 3 1492
清歌不尽
清歌不尽 2021-01-12 04:23

I have a List with the class MyObj : IComparable. I wrote the method CompareTo in the MyObj class per the

3条回答
  •  有刺的猬
    2021-01-12 05:09

    According to the documentation for List.Contains, it uses either your implementation of IEquatable interface or object.Equals, that you can override as well.

提交回复
热议问题