Static method , Abstract method , Interface method comparision ?
- by programmerist
When i choose these methods? i can not decide which one i must prefer or when will i use one of them?which one give best performance?
First Type Usage
public abstract class _AccessorForSQL
{
public virtual bool Save(string sp, ListDictionary ld, CommandType cmdType);
public virtual bool Update();
public virtual bool…