gpt4 book ai didi

C# 构造函数给出 "Method must have a return type"

转载 作者:太空宇宙 更新时间:2023-11-03 17:40:15 25 4
gpt4 key购买 nike

<分区>

我一直在尝试学习如何在 C# 中创建类。我创建了一个类,然后尝试创建一个构造函数来配合该类。但是当我在类中创建构造函数时,编译器一直认为我正在尝试创建一个方法。

public Product(string code, string description, decimal price)
{
this.Code = code;
this.Description = description;
this.Price = price;
}

Error 1 Method must have a return type

在我的表单中,我尝试实例化一个对象来配合它。

ProductClass product1 = new Product("CS10", "Murach's C# 2010", 54.60m);

但它仍然给我一个错误。

为什么我的编译器没有识别出我正在尝试创建构造函数而不是方法?是因为我没有相应的访问器属性吗?谢谢。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com