I am trying to compare two structs using equals (==) in C#. My struct is below:
public struct CisSettings : IEquatable { public int Ga
you must overload "==" operator, but also overload "!=" operator. (Look at this Note)
For overloading operator, see this page