我有一个 .NET 3.5(目标框架)Web 应用程序。我有一些看起来像这样的代码:
public string LogPath { get; private set; }
public string ErrorMsg { get; private set; }
它给了我这些行的编译错误:
"must declare a body because it is not marked abstract or extern."
有任何想法吗?我的理解是,这种类型的属性在 .NET 3.0 中是有效的。
谢谢!
问题出在我的 .sln 文件本身。尽管我在构建选项中更改了目标版本,但在 .sln 文件中,我发现了这一点:
TargetFramework = "3.0"
将其更改为“3.5”解决了它。多谢你们!