无法使用' $'输出属性的符号,如果我只输出1,我似乎得到输出0

时间:2016-07-19 10:44:12

标签: c#

class Program
 {
    static void Main(string[] args)
    {

        Car car = new Car(999, "g", BrandType.Lada);
        car.Introduce();
    }
}
public class Car
{
    public string Model { get; set; }
    public BrandType Brand { get; set; }
    public decimal Price { get; set; }

    public Car(decimal Price, string Model, BrandType brand)
    {
    }

    public void Introduce()
    {
        Console.WriteLine($"{this.Brand}-{this.Price}-{this.Model}");
    }

}

}

无法使用' $'输出属性的符号,如果我只输出1,我似乎得到0的输出,我不知道为什么。我的BrandType由4个品牌组成。如果我输出this.Brand我得到0,所以用this.Price和this.Mode。

0 个答案:

没有答案