Hi guys, can some one help to see what is problem with below code. I am newbie to C#:
Thanks
=================================================================================
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Lesson4Inheritance2
{
class Student
{
public static void Main(string[] args)
{
private int registrationNumber;
private string name;
private DateTime DateOfBirth;
public Student()
{
Console.WriteLine("New Student created. Parameterless constructor called....");
}
}
}
}