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 ...