首页 > 后端开发 > C++ > 如何使用 .NET 反射确定可空引用类型?

如何使用 .NET 反射确定可空引用类型?

Linda Hamilton
发布: 2025-01-18 10:16:12
原创
938 人浏览过

How to Determine Nullable Reference Types Using .NET Reflection?

利用.NET反射检查可空引用类型

.NET 6 引入了 NullabilityInfoContext API,专门用于处理此任务。

.NET 6之前的方案

NullabilityInfoContext API出现之前,您可以手动检查属性来确定可空性:

<code class="language-csharp">public static bool IsNullable(PropertyInfo property) => IsNullableHelper(property.PropertyType, property.DeclaringType, property.CustomAttributes);

public static bool IsNullable(FieldInfo field) => IsNullableHelper(field.FieldType, field.DeclaringType, field.CustomAttributes);

public static bool IsNullable(ParameterInfo parameter) => IsNullableHelper(parameter.ParameterType, parameter.Member, parameter.CustomAttributes);

private static bool IsNullableHelper(Type memberType, MemberInfo? declaringType, IEnumerable<CustomAttributeData> customAttributes)
{
    // 检查属性本身的 [Nullable] 属性。
    var nullable = customAttributes.FirstOrDefault(x => x.AttributeType.FullName == "System.Runtime.CompilerServices.NullableAttribute");
    if (nullable != null && nullable.ConstructorArguments.Count == 1)
    {
        // 检查第一个参数的值(表示可空性上下文的字节)。
        var args = (ReadOnlyCollection<CustomAttributeTypedArgument>)nullable.ConstructorArguments[0].Value!;
        if (args.Count > 0 && args[0].ArgumentType == typeof(byte))
        {
            return (byte)args[0].Value! == 2; // 2 代表“可空”。
        }
    }

    // 检查封闭类型的 [NullableContext] 属性。
    for (var type = declaringType; type != null; type = type.DeclaringType)
    {
        var context = type.CustomAttributes.FirstOrDefault(x => x.AttributeType.FullName == "System.Runtime.CompilerServices.NullableContextAttribute");
        if (context != null && context.ConstructorArguments.Count == 1 && context.ConstructorArguments[0].ArgumentType == typeof(byte))
        {
            // 检查第一个参数的值(表示可空性上下文的字节)。
            return (byte)context.ConstructorArguments[0].Value! == 2;
        }
    }

    // 未找到合适的属性,因此返回 false。
    return false;
}</code>
登录后复制

此方法可以检查 [Nullable][NullableContext] 属性,并考虑它们的各种形式和含义。但是,它不处理属性嵌入到程序集的情况,这需要对来自不同程序集的类型进行反射专用加载。

其他注意事项

  • 泛型类型:泛型类型可能具有用数组实例化的 [Nullable] 属性,其中第一个元素表示实际属性,后续元素表示泛型参数。
  • 可空性上下文:可空性上下文值为 2 表示“可空”,1 表示“不可空”,0 表示“忽略”。

以上是如何使用 .NET 反射确定可空引用类型?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板