class Sample
{
public static void main(String args[])
{
Console.WriteLine("welcome to dotnet");
Sample s=new Sample();
s.norm();
//s.norms();
Sample.norms();
}
public void norm()
{
Console.WriteLine("checking inside method of main class");
}
public static void norms()
{
Console.WriteLine("checking the static method");
}
}