CS_0023_Creating_Classes
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace string1 { class Program { static void Main( string [] args) { Car myNewCar = new Car (); myNewCar.Make = "TATA" ; myNewCar.Model = "INDICA" ; myNewCar.Year = 2005; myNewCar.Color = "GREY" ; Console .WriteLine( "{0} - {1} - {2} " , ...