CS_0025_Creating_Classes3
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MOD17_Inheritance2 { class Program { static void Main( string [] args) { Students myStudents = new Students (); Subjects mySubjects = new Subjects (); Marks myMarks = new Marks (); myStudents.Student1 = "MATHI" ; myStudents.Student2 = "KRISHNAN" ; myStudents.Student3 = "SURAJ" ;...