How to create Operators with CodeDOM?

  • Thread starter Thread starter PJ on Development
  • Start date Start date
P

PJ on Development

I've created a code generator that works like a charm for my needs.
However now I need to override some operators.

How do I do it with CodeDOM?

I coundn't find anything about it on the net so far.
 
Operators are methods with special names such as op_addition. If you give
your method the correct names, it should work.

---------
- G Himangi, LogicNP Software http://www.ssware.com
Shell MegaPack: Drop-In GUI Controls For Windows Explorer Like File And
Folder Browser Functionality
CryptoLicensing: Add licensing, copy-protection and activation to your
software
EZNamespaceExtensions: Fast and painless development of namespace extensions
EZShellExtensions: Rapid development of all shell extensions,explorer bars
and BHOs
 
Back
Top