gpt4 book ai didi

Roslyn:是 ISymbol.GetAttributes 返回继承的属性

转载 作者:行者123 更新时间:2023-12-04 13:42:10 24 4
gpt4 key购买 nike

罗斯林有 ISymbol与各种有用的方法接口(interface)。我正在尝试通过 ISymbol.GetAttributes 获取所有类属性.这是一个文档链接:

https://docs.microsoft.com/de-de/dotnet/api/microsoft.codeanalysis.isymbol.getattributes?view=roslyn-dotnet

正如我们所看到的,没有指示此方法是否返回继承的属性(来自基类的属性)。所以这是第一个问题。
第二个问题 - 为什么文档中没有提到这一点?

最佳答案

我不知道为什么文档中没有提到它,我认为应该在那里提到它。
由于我面临同样的问题,我对其进行了测试,它会不返回继承的属性 .您可以使用这些扩展方法来获取所有属性,包括继承的属性:

public static IEnumerable<AttributeData> GetAttributesWithInherited(this INamedTypeSymbol typeSymbol) {
foreach (var attribute in typeSymbol.GetAttributes()) {
yield return attribute;
}

var baseType = typeSymbol.BaseType;
while (baseType != null) {
foreach (var attribute in baseType.GetAttributes()) {
if (IsInherited(attribute)) {
yield return attribute;
}
}

baseType = baseType.BaseType;
}
}

private static bool IsInherited(this AttributeData attribute) {
if (attribute.AttributeClass == null) {
return false;
}

foreach (var attributeAttribute in attribute.AttributeClass.GetAttributes()) {
var @class = attributeAttribute.AttributeClass;
if (@class != null && @class.Name == nameof(AttributeUsageAttribute) &&
@class.ContainingNamespace?.Name == "System") {
foreach (var kvp in attributeAttribute.NamedArguments) {
if (kvp.Key == nameof(AttributeUsageAttribute.Inherited)) {
return (bool) kvp.Value.Value!;
}
}

// Default value of Inherited is true
return true;
}
}

return false;
}

关于Roslyn:是 ISymbol.GetAttributes 返回继承的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55523130/

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