Posted on: 2/13/2014 7:15:43 PM | Views : 564

If static member is specific to a particular class then why C# allow Static members inheritances?

using System; namespace MyNamespace {    public class MyBaseClass     {        public void MethodA()        {            Console.WriteLine("Instance method");        }        public static void MethodB()        {            Console.WriteLine("Static method");        }     }          public class MyChildClass:MyBaseClass     {     }          ...

Go to the complete details ...