コード例 #1
0
        static void Main(string[] args)
        {
            Student S1 = new Student();

            S1.ShowInfo();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: Fahmida567/oop2-lab-3-task
        static void Main(string[] args)
        {
            Student s1 = new Student("Fahmida", "19-40040-1", "CSE", 3.8f);

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

            s1.ShowInfo();
        }