• 2022-06-08
    C#中Car为一自定义类,其中有以下方法定义public void Auto(){…}使用以下语句创建了该类的一个对象c1:Car c1=new Car();那么,调用Car的Auto方法为
    A: c1.Auto()
    B: c1::Auto
    C: Car.Auto()
    D: Car::Auto()