I'm trying to get the list of defined operators for a specific type in order to see what kind of operations can be applied to that type.
For example, the type Guid supports operations == and !=.
So if user wants to apply <= operation for a Guid type i can handle this situation before an exception occurs.
Or if i could have the list of operators, i can force user to use only operations in the list.
The operators are seen in the object browser so there may be a way to access them via reflection but i couldn't find that way.
Any help will be appreciated.
Thanks..