Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            Student s = new Student();

            s.SetName("Shahriar");
            s.SetId("15-30130-2");
            s.SetDepartment("CSE");
            s.SetCGPA(2.99f);

            s.ShowInfo();
        }