我可以在不使用 FieldInfo 的情况下使用 OpCodes.Ldsfld 吗?

Can I use OpCodes.Ldsfld without using FieldInfo?

我想避免使用 GetType 和 GetField。我可以只将字符串与 Ldsfld 一起使用吗?我在下面包含了我要完成的事情的模型。如您所见,我是 IL Generation 的新手 - 我正在尝试消除我的应用程序中的一些反射成本。

using System;
using System.Reflection.Emit;

namespace ConsoleApplication10
{
    static class Program
    {
        public static string TextBox1 = "Hello World!";

        static void Main(string[] args)
        {
            var dm = new DynamicMethod("My_method",
                typeof(string), null, true);

            var il = dm.GetILGenerator();
            il.Emit(OpCodes.Ldsfld, "string ConsoleApplication10.Program::TextBox1");
            il.Emit(OpCodes.Ret);
            var func = (Func<string>)dm.CreateDelegate(typeof(Func<string>));
            var s = func();

            Console.WriteLine(s);
        }
    }
}

不,你不能,the documentation for OpCodes.Ldsfld 说:

The following Emit method overload can use the ldsfld opcode:

  • ILGenerator.Emit(OpCode, FieldInfo)

如果知道字段名称,要获取FieldInfo,则需要使用反射。