0

我正在使用 DynamicMethod 编写一些代码。在我的 DynamicMethod 中,我想调用 Nullable.HasValue(以及 Nullable.Value)属性。我已经编写了一些代码来做一些事情,但我不断得到Operation could destabilize the runtime error.

这是我的代码:

using System;
using System.Collections.Generic;
using System.Reflection;
using System.Reflection.Emit;

namespace Test
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine(testHasValue()(true));
        }

        delegate bool HasValueDelegate(bool? a);
        static HasValueDelegate testHasValue()
        {
            MethodInfo GetNullableHasValue = typeof(bool?).GetProperty("HasValue").GetGetMethod();

            DynamicMethod method = new DynamicMethod("Wow", typeof(bool), new Type[] { typeof(bool?) });
            ILGenerator generator = method.GetILGenerator();

            MethodInfo GetNullableValue = typeof(bool?).GetProperty("Value").GetGetMethod();            

            generator.Emit(OpCodes.Ldarg_0);
            // Callvirt results in the same error.
            generator.Emit(OpCodes.Call, GetNullableHasValue); 
            generator.Emit(OpCodes.Ret);

            return ((HasValueDelegate)(method.CreateDelegate(typeof(HasValueDelegate)))).Invoke;
        }
    }
}

我应该补充一点,根据 Telerik JustDecompile,返回 HasValue 属性的 C# 代码转换为 IL 如下:

    static bool hasValue(bool? a)
    {
        return a.HasValue;
    }

.method private hidebysig static bool hasValue (
        valuetype [mscorlib]System.Nullable`1<bool> a
    ) cil managed 
{
    IL_0000: ldarga.s a
    IL_0002: call instance bool valuetype [mscorlib]System.Nullable`1<bool>::get_HasValue()
    IL_0007: ret
}
4

1 回答 1

3

我想通了。

generator.Emit(OpCodes.Ldarg_0);

应该

generator.Emit(OpCodes.Ldarga_S, 0);
于 2013-09-13T16:12:37.877 回答