I have an object of type Tthat implements IComparable<T>. Is it possible to bool Equals (T obj)omit a check during implementation if (ReferenceEquals(this, null)) { DoSomething() }? Can I assume that since the function can be called thisno longer null?
Many thanks.
source
share