gpt4 book ai didi

c# - 如何使接口(interface)的实现产生自动属性而不是 NotImplementedException?

转载 作者:IT王子 更新时间:2023-10-29 04:21:03 28 4
gpt4 key购买 nike

考虑到当我将鼠标移到 ICar 表达式上并单击 Implement Interface 时,我们有一个简单的接口(interface),例如 ICar Visual Studio 生成以下实现。

是否有任何方法可以只拥有一个自动属性,如下面的示例所示。我相信这会缩短实现时间,因为大多数时候自动属性是预期的实现。

    public interface ICar
{
double Power { get; set; }
}

public class Car:ICar
{

public double Power
{
get
{
throw new NotImplementedException();
}
set
{
throw new NotImplementedException();
}
}
}

最佳答案

您可以在选项中更改它:工具 > 选项 > 文本编辑器 > C# > 高级,在底部你有

t

关于c# - 如何使接口(interface)的实现产生自动属性而不是 NotImplementedException?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17703277/

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