Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
引用动态委托的最佳方式是什么。我想对从配置数据库返回的方法名称执行以下操作。
AddressOf "MethodName"
通过反射(特别是Type.GetMethod)。
使用 System.Reflection 命名空间中的类。
AddressOf 不是这样工作的,但是如果您还知道方法的程序集/类,则可以使用反射来获取方法的委托。