class CheckStatic:NewKeyWord
{
public CheckStatic():base()
{
Console.WriteLine(“I am a Derived Class Constructor”);
}
public void CheckStatic1()
{
base.GetData1();
}
}
///////////////////////////////////////////
Use the (Base) Keyword to call a Base Class Constructor.