Reflection and Operator Overloads in C#

后端 未结 3 1566
悲&欢浪女
悲&欢浪女 2020-12-15 08:18

Here\'s the deal. I\'ve got a program that will load a given assembly, parse through all Types and their Members and compile a TreeView (very similar to old MSDN site) and

3条回答
  •  臣服心动
    2020-12-15 08:43

    Operator overloads do get the IsSpecialName flag set to true. And if you implement the methods by explicitly giving them a name like op_* that flag is set to false.

提交回复
热议问题