在C#中,使用System.Reflection
調用私有方法需要以下步驟:
Type
)MethodInfo
對象Delegate
對象來表示該私有方法Delegate
對象的DynamicInvoke
方法來執行私有方法以下是一個示例代碼,演示如何使用System.Reflection
調用私有方法:
using System;
using System.Reflection;
class Program
{
static void Main()
{
// 創建一個示例類
MyClass myObject = new MyClass();
// 獲取類型對象
Type type = myObject.GetType();
// 獲取要調用的私有方法的MethodInfo對象
MethodInfo methodInfo = type.GetMethod("MyPrivateMethod", BindingFlags.NonPublic | BindingFlags.Instance);
// 創建一個Delegate對象來表示該私有方法
Delegate del = Delegate.CreateDelegate(methodInfo.ReturnType, myObject, methodInfo);
// 調用Delegate對象的DynamicInvoke方法來執行私有方法
object result = del.DynamicInvoke(new object[] { /* 傳遞給私有方法的參數 */ });
// 輸出結果
Console.WriteLine("私有方法的返回值為: " + result);
}
}
class MyClass
{
private int MyPrivateMethod(int x, int y)
{
return x * y;
}
}
在上面的示例中,我們首先創建了一個名為MyClass
的示例類,并在其中定義了一個私有方法MyPrivateMethod
。然后,在Main
方法中,我們使用System.Reflection
獲取了MyClass
類型的對象和MyPrivateMethod
方法的MethodInfo
對象。接下來,我們使用Delegate.CreateDelegate
方法創建了一個表示該私有方法的Delegate
對象,并使用DynamicInvoke
方法調用了該私有方法。最后,我們輸出了私有方法的返回值。