示例#1
0
        static void Main(string[] args)
        {
            Car c = new Car();

            c.SetCost(300);
            Console.WriteLine(c.GetCost());
        }