Could someone point me to the interface that I need to implement in order to get basic math operators (i.e. +, -, *, /) to function on a custom type?
|
|
|
|
|
|
|
You have to use operator overloading.
|
||||
|
|
|
You need to overload the operators on the type.
|
||
|
|
|
|
You can find a good example of operator overloading for custom types here.
|
||
|
|
|
|
And so on for the other operators. |
||
|
|
|
|
What you're looking for is not an interface, but Operator Overloading. Basically, you define a static method like so:
after which you can add MyClasses together:
|
||
|
|
|
|
Here is the MSDN article on operators and overriding in C#: http://msdn.microsoft.com/en-us/library/s53ehcz3%28loband%29.aspx |
||
|
|
