using System;
class Rectangle
{
public Rectangle()
{
Console.WriteLine("This is the Default Constructor");
}
}
using System;
class Program
{
public static void Main(String[] args)
{
Rectangle rec = new Rectangle();
}
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment