gpt4 book ai didi

c# - 这个 nameof() 真的是递归调用吗?

转载 作者:太空狗 更新时间:2023-10-30 00:49:49 25 4
gpt4 key购买 nike

我现在正在用 C# 创建一个 ConfigurationSection。我决定通过使用 nameof(PropertyName) 而不是硬编码字符串来利用一些 C# 6 功能。

但是,我从 Resharper 得到了一个关于递归调用的奇怪结果。

举个例子:

Recursive Warning

我明白为什么它可能会发出此警告,因为该属性在其自身内被引用。然而,我不相信这实际上是递归的。

这个电话有什么我需要担心的吗?

最佳答案

除非 this[string] 调用 CoreApiRootUrl,否则它不是递归的。

你是对的,nameof(...) 实际上根本没有调用。

我刚刚验证了我在一个小型测试类中看到了相同的错误(使用 R# 10.0.1):

public class Bug
{
public string this[string x] => "";

public string Foo
{
get { return this[nameof(Foo)]; } // Warning here
}
}

奇怪的是,如果我将 Foo 更改为表达式主体属性:

public string Foo => this[nameof(Foo)];

我没有看到警告。

绝对是 R# 错误 - 将其提交给 Jetbrains。

关于c# - 这个 nameof() 真的是递归调用吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36090776/

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