Usage of Extension Methods

前端 未结 9 1693
抹茶落季
抹茶落季 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:09

      Its beeing used to extend (add on) functionality of existing classes without actually changing them.

      You can see this in how LINQ (System.Linq namespace and others) adds on a lot of functionality to all collections.

    提交回复
    热议问题