How can I check whether a certain type implements a certain operator?
struct CustomOperatorsClass { public int Value { get; private set; } public C
You should check if class have method with op_Addition name You can find overloaded method names here, Hope this helps
op_Addition