public class student:university<student> { private string _student_name;//It is a field // Constructor public student() { _student_name="": } //properties public string StudentName { get {return(_student_name);} set {_student_name=value;} } // Methods public student addstudent(string sname) {//Code here} }</student>
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)