Stories recently tagged with 'ExtensionMethods'

Extension method Binding and Error reporting(blogs.msdn.com)

submitted by CharlieCalvertCharlieCalvert(7875) 5 years ago

Extension methods are static methods that are bound with instance semantics. In this article i will give a brief overview of the various steps involved in binding a extension methods. Finally this will prepare the way to discuss the error reporting for extension methods and how these error messages can be used to diagnose the problem at hand. read more...

add a comment |category: |Views: 21

tags: another

Extension methods and Curried Delegates(blogs.msdn.com)

submitted by CharlieCalvertCharlieCalvert(7875) 5 years ago

Since Extension methods behave like instance method it makes sense that we should be able to create delegates that would accept the instance method signature, to this end we have included Adding an Extension Methods to delegate invocation List read more...

add a comment |category: |Views: 32

tags: another

Extension methods and Curried Delegates(blogs.msdn.com)

submitted by CharlieCalvertCharlieCalvert(7875) 5 years ago

Since Extension methods behave like instance method it makes sense that we should be able to create delegates that would accept the instance method signature, to this end we have included Adding an Extension Methods to delegate invocation List read more...

add a comment |category: |Views: 32

tags: another

Extension Methods in C#(blogs.msdn.com)

submitted by CharlieCalvertCharlieCalvert(7875) 5 years ago

Extension methods are a new feature for C# 3.0 and I had the opportunity to implement them in the Compiler. These methods can then be called with instance syntax on any object that is convertible(see convertability section for details) to the first param of the method. read more...

add a comment |category: |Views: 24

tags: another

New Orcas Language Feature: Extension Methods(weblogs.asp.net)

submitted by steele27steele27(115) 5 years, 2 months ago

Extension methods allow developers to add new methods to the public contract of an existing CLR type, without having to sub-class it or recompile the original type. Extension Methods help blend the flexibility of "duck typing" support popular within dynamic languages today with the performance and compile-time validation of strongly-typed languages. read more...

add a comment |category: |Views: 77

tags: another

Neat Tricks With Extension Methods(diditwith.net)

submitted by cls2degcls2deg(1535) 5 years, 7 months ago

Exploring some of the cool things you can do with extension methods in C# 3.0. read more...

add a comment |category: |Views: 12

tags: another