Linq and Extension Methods Good Overview and Method Syntax

Posted by sladescross on August 28, 2010

http://msdn.microsoft.com/en-us/library/bb383977.aspx
Shows the ingredients and an example targeted against a Type Interface.
// Define extension methods for any type that implements IMyInterface.
public static class Extension
{
public static void MethodA(this IMyInterface myInterface, int i)
{
... [read more]

Rating

not rated

Reviews

There are currently no comments or reviews.

Submit a review:

Login required.