show/hide this revision's text 2 added 644 characters in body

Interfaces don't have

In C# 3.0, static methods because of the definition can be used on interfaces as if they were a part of an interface (which them by using extension methodsan object, i.e., instance of as with DumpToDatabase() below:

static class HelperMethods
 {  //IHelper h = new HeleperA();
    //h.DumpToDatabase() 
    public static void DumpToDatabase(this IHelper helper) { /* ... */ }

    //IHelper h = a.RetrieveByID(5)
    public static IHelper RetrieveByID(this ObjectA atype, supports).  int id) 
     { return new HelperA(a.GetByID(id));
     }

    //Ihelper h = b.RetrieveByID(5)       
    public static IHelper RetrieveByID(this ObjectB b, int id)
     { return new HelperB(b.GetById(id.ToString())); 
     }

 }
show/hide this revision's text 1

Interfaces don't have static methods because of the definition of an interface (which methods an object, i.e., instance of a type, supports).