首頁 > 後端開發 > C++ > 如何使用反射從字串中檢索 C# 類別參考?

如何使用反射從字串中檢索 C# 類別參考?

Linda Hamilton
發布: 2025-01-14 11:49:43
原創
545 人瀏覽過

How Can I Retrieve a C# Class Reference from a String Using Reflection?

利用C#反射從字串中取得類別引用

在C#中,從字串取得類別引用需要用到反射機制。以下是實作方法:

使用Type.GetType方法:

  1. Type.GetType("FooClass"):取得與指定字串(例如,「FooClass」)對應的Type實例。
  2. Invoke():要呼叫靜態方法,例如FooClass.MyMethod(),可以使用Invoke()方法在檢索到的MethodInfo物件上呼叫。

範例:

<code class="language-csharp">using System;
using System.Reflection;

class Program
{
    static void Main()
    {
        // 获取Type实例
        Type t = Type.GetType("FooClass");

        // 获取静态方法的MethodInfo
        MethodInfo method = t.GetMethod("MyMethod", BindingFlags.Static | BindingFlags.Public);

        // 调用方法
        method.Invoke(null, null);
    }
}

class FooClass
{
    public static void MyMethod()
    {
        Console.WriteLine("MyMethod invoked via reflection!");
    }
}</code>
登入後複製

此方法直接從字串中檢索類別引用並呼叫該類別的靜態方法。

以上是如何使用反射從字串中檢索 C# 類別參考?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板