static void Main(string[] args) { Car car = new Car(); car.Speed = 300; Console.WriteLine("Cars speed is " + car.Speed); Console.ReadLine(); }