gpt4 book ai didi

c# - Visual Studio 201 7's "Implement Interface”命令可以生成 C# 5 代码吗?

转载 作者:太空狗 更新时间:2023-10-29 17:49:08 26 4
gpt4 key购买 nike

在 Visual Studio 2017 中,在“Quick Actions and Refactorings”菜单中,当我单击“Implement Interface”时,我得到了使用 C# 新功能的实现,像这样:

public int ConnectionTimeout => throw new NotImplementedException();

问题是我的公司使用的是 C# 5,所以我们不能使用这个更新的语法。我知道旧版本的 Visual Studio 会生成此代码:

public int ConnectionTimeout { get { throw new NotImplementedException(); } }

有没有办法让 Visual Studio 2017 做到这一点?我已将我的项目设置为使用 C# 5 进行编译。

编辑:我注意到代码生成器不一致。如果接口(interface)有一个只有 getter 的 bool 成员,它使用旧语法。否则它使用新语法。这让我觉得我运气不好。

private interface myint
{
bool bool1 { get; }
bool bool2 { get; set; }
bool bool3 { set; }

int int1 { get; }
int int2 { get; set; }
int int3 { set; }

string string1 { get; }
string string2 { get; set; }
string string3 { set; }
}

private class myclass : myint //I clicked "Implement Interface" on this
{
public bool bool1
{
get
{
throw new NotImplementedException();
}
}

public bool bool2 { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
public bool bool3 { set => throw new NotImplementedException(); }

public int int1 => throw new NotImplementedException();

public int int2 { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
public int int3 { set => throw new NotImplementedException(); }

public string string1 => throw new NotImplementedException();

public string string2 { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
public string string3 { set => throw new NotImplementedException(); }
}

最佳答案

转到工具 -> 选项 -> 文本编辑器 -> 代码样式 -> 常规,滚动到代码块首选项部分并更改首选项对于属性对于索引器对于访问器,从“首选表达式 block ”(默认)到“首选 block 体”.

enter image description here

关于c# - Visual Studio 201 7's "Implement Interface”命令可以生成 C# 5 代码吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43209605/

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