Posts

OOPS - Interface, Abstract, Delegate well explained in code

using System; using System.CodeDom.Compiler ; namespace csharpoops {                     abstract class test1                 {                                   public abstract int Fun(int a,int b);                                       public int Checking(int d,int e)                              ...