Example #1
0
        static void Main(string[] args)
        {
            Student S1 = new Student();

            S1.ShowInfo();
        }
Example #2
0
        static void Main(string[] args)
        {
            Student s1 = new Student("Fahmida", "19-40040-1", "CSE", 3.8f);

            s1.ShowInfo();
        }
Example #3
0
        static void Main(string[] args)
        {
            Student s1 = new Student("Niaz", "18-38770-3", "CSE", 3.41f);

            s1.ShowInfo();
        }