Introduction - If you have any usage issues, please Google them yourself
2. Write a console application, the program has two class definition, a class Class1 is automatically created when you create the program, one is user-defined class Student,
Requirements class contains private fields: school (string), name (string) and gender (character), has three attributes: Student ID (read-write), name (read-only), gender (read-write),
There have arg constructor, having also shows students personal information. Complete the following features in the Main method Class1 class:
(1) Enter a student s personal information (student number, name, sex) the keyboard.
(2) modify the student s student number and gender.
The student s personal information before and (3) Print modifications.