Linq and Extension Methods Good Overview and Method Syntax
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]
Submit a review:
Login required.