Extension method resolution

前端 未结 2 856
隐瞒了意图╮
隐瞒了意图╮ 2021-01-05 09:10

I wrote an extension method for String to get a char argument, string.Remove(char). But when I used this, it instead called the default string.Remove(int)

相关标签:
2条回答
  • 2021-01-05 09:21

    Instance methods have priority over extension methods. Your observation is proof of the same.

    When resolving which method to call, it will always pick a matching instance method over an extension method... which is intuitive in a way.

    Paraphrased from C# in depth,

    When the compiler sees that you're trying to call a method which looks like an instance method but is unable to find one, it then looks for extension methods (that are visible based on your using directives). In case of multiple candidates as the target extension method, the one with "better conversion" similar to overloading (e.g. if IChild and IBase both have a similar extension method defined.. IChild.ExtensionMethod is chosen)

    Also a hidden code-breaker could be lets say TypeA didn't have SecretMethod as an instance method in Libv1.0. So you write an extension method SecretMethod. If the author introduces an instance method of the same name and signature in v2.0 (sans the this param), and you recompile your source with the latest-n-greatest Libv2.0, all existing calls to the extension method would silently now be routed to the new instance method.

    0 讨论(0)
  • 2021-01-05 09:38

    This behavior is correct. The reason is that introducing an extension method should not change the way existing code executes. Code should behave exactly the same with or without this "superfluous" extension method. It may seem counter-intuitive in certain cases (like yours), but happens for a reason.

    0 讨论(0)
提交回复
热议问题