What is Static Constructor ?
Example:
public class SomeClass()
{
static SomeClass()
{
//Static members may be accessed from here
//Code for Initialization
}
}
-->
Q1: What is multiple inheritance, and why doesn’t C# suppor…
Overloading:Overloading refers to the ability to define mul…
Comments