class Student
{
private string stnumber;
private string stname;
private string stsex;
public Student(){ //Constructor
stnumber="";
stname="";
stsex="";
}
//Constructor with parameters
public Student(string id, string name, string sex){
stnumber=id;
stname=name;
stsex=sex;
}
public void setnumber()
{
Console.WriteLine("Enter student's number:");
stnumber =Console.ReadLine();
}
public void getnumber()
{
Console.WriteLine("Student's number is:{0}",stnumber);
}
public string stunumber{ //stunumber property
set { stnumber=value;}
get { return stnumber; }
}
~Student()//destructor
{
}
}
|
This website intents to provide free and high quality tutorials, examples, exercises and solutions, questions and answers of programming and scripting languages:
C, C++, C#, Java, VB.NET, Python, VBA,PHP & Mysql, SQL, JSP, ASP.NET,HTML, CSS, JQuery, JavaScript and other applications such as MS Excel, MS Access, and MS Word. However, we don't guarantee all things of the web are accurate. If you find any error, please report it then we will take actions to correct it as soon as possible.