I seem to remember reading something about how it is bad for structs to implement interfaces in CLR via C#, but I can\'t seem to find anything about it. Is it bad? Are the
There are no consequences to a struct implementing an interface. For example the built-in system structs implement interfaces like IComparable and IFormattable.