vote up 1 vote down star
1

Does anyone have a exhaustive list of the names that C#/CLR gives to operators? (Maybe my lack of sleep is kicking in, but I can't seem to find it on Google) E.g. op_Addition, op_Subtraction. Furthermore is there any chance that these would be different in other cultures?

I am trying to create a class that can add/subtract etc. two objects and I have done all the primitives - I just need to do the 'rest'.

Many thanks.

flag

1 Answer

vote up 5 vote down check

Here is the full list of overloadable operators from MSDN.

--- EDIT ---

In response to your comment, I believe what you want is here. Search for Table 6-1.

link|flag
I know, but I need the actual method names in the final assembly, like op_Addition... Maybe I will go implement them all and reflect. – Jonathan C Dickinson Mar 16 at 5:56
Jonathan, I believe the new link above has what you want. – Reed Copsey Mar 16 at 6:05
perfect! many thanks! – Jonathan C Dickinson Mar 16 at 6:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.