Posts

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" ;...

CS_0024_Creating Classes2

//   Program 24 : Creating Classes 2 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MOD17_inheritance {     class Program     {         static void Main( string [] args)         {             Car myCar = new Car ();             Name myName = new Name ();             myCar.Make = "TATA" ;             myCar.Model = "INDICA" ;             myCar.Year = 2005;             myCar.Color = "GREY" ;     ...