[C# Tip] Reflection: How to Invoke Method with parameters

超级网迷+ 电脑迷+ 音乐迷
打印 被阅读次数

using System.Reflection;

MethodInfo mi = classInstance.GetType().GetMethod(methodString);
result = methodInfo.Invoke(classInstance, parametersArray);

2017.04.16

登录后才可评论.