gpt4 book ai didi

c# ambiguous 属性

转载 作者:太空宇宙 更新时间:2023-11-03 20:26:08 29 4
gpt4 key购买 nike

我阅读了以下重要问题:Attributes in C#并学到了很多关于属性的知识。

我正在使用一个使用多个属性的库。示例:

[State]
public class USStates
{
[City]
public void isNewYork() { }
[Zip]
public ZipCode GetZipCode() { }
}

我想创建自己的属性,并使用来自第 3 方命名空间的现有属性(State、City、Zip)对我的类执行额外的工作。例如,我正在努力实现这一目标:

using 3rdPartyNamespace;
using MyOwnSuperNamespace;

public class State : Attribute
{
// my own implementation/extension of State
}

// create City, Zip attributes respectively

[State]
public class USStates
{
[City]
public void isNewYork() { }
[Zip]
public ZipCode GetZipCode() { }
}

我尝试了上面的方法,但在所有 3 个属性上都出现了不明确的属性错误。我可以告诉编译器直接调用两个属性而不是使用任何一个吗?我想保留现有的属性并执行额外的工作,而不必使用我创建的额外属性来标记我的类。

这可能吗?

最佳答案

ho can i tell the compiler to direct call to both attributes instead of using either one?

如果你想应用这两个属性,你需要指定这两个属性。您需要完全限定属性名称,或使用 using 别名指令,例如

using Mine = MyOwnSuperNamespace;
using Theirs = 3rdPartyNamespace;

[Mine.State]
[Theirs.State]
...

关于c# ambiguous 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10571515/

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