Usage of Extension Methods

前端 未结 9 1678
抹茶落季
抹茶落季 2020-12-11 01:51

  • When does using extension methods make sense?
  • Does adding extension methods to a type affect performance?

    These questions are follow up to the question i a

  • 9条回答
    •  [愿得一人]
      2020-12-11 02:19

      When does using extension methods make sense?

      They make sense when you are using LINQ and want to chain or pipe functional output from one function to another. It improves the readability of the code and allows you to express a concept more elegantly (whatever that is worth).

      They also allow you to give the appearance of instance methods on any type you like without modifying the source of that type, this can often help readability and the expressiveness of your code when it is used reasonably

      Does adding extension methods to a type affect performance?

      Note that an extension method call like:

      instance.SomeExtensionMethod()
      

      gets compiled to:

      StaticExtensionMethodClass.SomeExtensionMethod(instance);
      

      so performance will be the same as any other static method call.

    提交回复
    热议问题