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()));
}
}
