For instance, I read that visual basic .net didn't have operator overloads before, so wouldn't be able to use a types overloaded operators, if they aren't provided as normal methods too (Add, instead of operator+).
Now that VB has this feature, would CLSCompliant attribute care if you have normal static methods like Add, Subtract instead of operator overloads only?
I have written some types without the verbal static methods, but only operator overloads, and the C# compiler didn't care. If it was a problem, it would warn me, right?