.NET 幫助

C# 反射(開發人員如何使用)

發佈 2024年1月27日
分享:

在軟體開發的世界中,C# 是一種多功能且強大的程式語言,為開發者提供了廣泛的功能。

其中一個以靈活性和動態性著稱的功能是反射。 C# 中的反射允許開發人員在運行時檢查和互動類型的元數據。這種能力開啟了新的可能性維度,使開發人員能夠創建更靈活、可擴展和強大的應用程序。

在本文中,我們將深入探討 C# 反射的複雜性,探索其關鍵概念、用例和最佳實踐。 我們還會查找PdfDocument物件的反射資訊IronPDF.

C#中的反射

反射是一種機制,允許程式在執行期間檢查和操縱其結構和行為。在 C# 中,這是通過 System.Reflection 命名空間實現的,它提供用于與元數據交互的類和方法,獲取有關類型的信息,甚至動態創建實例。

反射的關鍵組成部分

類型類別

C# 反射的核心是 Type 類別,該類別表示 .NET 執行環境中的一種型別。此類別提供了關於型別的大量信息,包括所有的公有方法、屬性、欄位、事件和方法參數。

您可以使用多種方法為給定類型獲得一個 Type 對象,例如 typeof()運算符或通過調用 GetType()** 方法在一個物件上。

using System;

class Program
{
    static void Main()
    {
        // Using typeof to get Type information for string
        Type stringType = typeof(string);
        Console.WriteLine("Information about the string type:");
        Console.WriteLine($"Type Name: {stringType.Name}");
        Console.WriteLine($"Full Name: {stringType.FullName}");
        Console.WriteLine($"Assembly Qualified Name: {stringType.AssemblyQualifiedName}");
    }
}
using System;

class Program
{
    static void Main()
    {
        // Using typeof to get Type information for string
        Type stringType = typeof(string);
        Console.WriteLine("Information about the string type:");
        Console.WriteLine($"Type Name: {stringType.Name}");
        Console.WriteLine($"Full Name: {stringType.FullName}");
        Console.WriteLine($"Assembly Qualified Name: {stringType.AssemblyQualifiedName}");
    }
}
Imports System

Friend Class Program
	Shared Sub Main()
		' Using typeof to get Type information for string
		Dim stringType As Type = GetType(String)
		Console.WriteLine("Information about the string type:")
		Console.WriteLine($"Type Name: {stringType.Name}")
		Console.WriteLine($"Full Name: {stringType.FullName}")
		Console.WriteLine($"Assembly Qualified Name: {stringType.AssemblyQualifiedName}")
	End Sub
End Class
VB   C#

輸出

C# 反射(對開發者如何運作):圖1

程序集類別

在 .NET 中,程式集是部署和版本控制的單位。 System.Reflection 命名空間中的 Assembly 類別提供用於動態加載和描述程序集以及檢查程序集信息的方法。

您可以為當前正在執行的程序集或任何引用的程序集獲取一個 Assembly 物件。

using System;
using System.Reflection;

class Program
{
    static void Main()
    {
        // Example 1: Get information about the executing assembly
        Assembly executingAssembly = Assembly.GetExecutingAssembly();
        Console.WriteLine("Information about the executing assembly:");
        DisplayAssemblyInfo(executingAssembly);

        // Example 2: Load the mscorlib assembly
        Assembly mscorlibAssembly = Assembly.Load("mscorlib");
        Console.WriteLine("\nInformation about the mscorlib assembly:");
        DisplayAssemblyInfo(mscorlibAssembly);
    }

    static void DisplayAssemblyInfo(Assembly assembly)
    {
        Console.WriteLine($"Assembly Name: {assembly.GetName().Name}");
        Console.WriteLine($"Full Name: {assembly.FullName}");
        Console.WriteLine($"Location: {assembly.Location}");
        Console.WriteLine("\nModules:");

        foreach (var module in assembly.GetModules())
        {
            Console.WriteLine($"- {module.Name}");
        }

        Console.WriteLine(new string('-', 30));
    }
}
using System;
using System.Reflection;

class Program
{
    static void Main()
    {
        // Example 1: Get information about the executing assembly
        Assembly executingAssembly = Assembly.GetExecutingAssembly();
        Console.WriteLine("Information about the executing assembly:");
        DisplayAssemblyInfo(executingAssembly);

        // Example 2: Load the mscorlib assembly
        Assembly mscorlibAssembly = Assembly.Load("mscorlib");
        Console.WriteLine("\nInformation about the mscorlib assembly:");
        DisplayAssemblyInfo(mscorlibAssembly);
    }

    static void DisplayAssemblyInfo(Assembly assembly)
    {
        Console.WriteLine($"Assembly Name: {assembly.GetName().Name}");
        Console.WriteLine($"Full Name: {assembly.FullName}");
        Console.WriteLine($"Location: {assembly.Location}");
        Console.WriteLine("\nModules:");

        foreach (var module in assembly.GetModules())
        {
            Console.WriteLine($"- {module.Name}");
        }

        Console.WriteLine(new string('-', 30));
    }
}
Imports Microsoft.VisualBasic
Imports System
Imports System.Reflection

Friend Class Program
	Shared Sub Main()
		' Example 1: Get information about the executing assembly
		Dim executingAssembly As System.Reflection.Assembly = System.Reflection.Assembly.GetExecutingAssembly()
		Console.WriteLine("Information about the executing assembly:")
		DisplayAssemblyInfo(executingAssembly)

		' Example 2: Load the mscorlib assembly
		Dim mscorlibAssembly As System.Reflection.Assembly = System.Reflection.Assembly.Load("mscorlib")
		Console.WriteLine(vbLf & "Information about the mscorlib assembly:")
		DisplayAssemblyInfo(mscorlibAssembly)
	End Sub

	Private Shared Sub DisplayAssemblyInfo(ByVal assembly As System.Reflection.Assembly)
		Console.WriteLine($"Assembly Name: {assembly.GetName().Name}")
		Console.WriteLine($"Full Name: {assembly.FullName}")
		Console.WriteLine($"Location: {assembly.Location}")
		Console.WriteLine(vbLf & "Modules:")

		For Each [module] In assembly.GetModules()
			Console.WriteLine($"- {[module].Name}")
		Next [module]

		Console.WriteLine(New String("-"c, 30))
	End Sub
End Class
VB   C#

輸出

C# 反射(它如何為開發人員工作):圖 2

MethodInfo、PropertyInfo、FieldInfo 和 EventInfo 類別

這些類分別表示公共成員、方法、屬性、欄位和事件。 他們公開了有關這些成員的資訊,例如他們的名稱、類型、可存取性等。

你可以透過 Type 類別獲取這些類別的實例存取權。

using System;
using System.Reflection;

class MyClass
{
    public void MyMethod() { }
    public int MyProperty { get; set; }
    public string myField;
    public event EventHandler MyEvent;
}

class Program
{
    static void Main()
    {
        // Get MethodInfo for MyMethod
        MethodInfo methodInfo = typeof(MyClass).GetMethod("MyMethod");
        Console.WriteLine($"Method Name: {methodInfo.Name}");

        // Get PropertyInfo for MyProperty
        PropertyInfo propertyInfo = typeof(MyClass).GetProperty("MyProperty");
        Console.WriteLine($"Property Name: {propertyInfo.Name}");

        // Get FieldInfo for myField
        FieldInfo fieldInfo = typeof(MyClass).GetField("myField");
        Console.WriteLine($"Field Name: {fieldInfo.Name}");

        // Get EventInfo for MyEvent
        EventInfo eventInfo = typeof(MyClass).GetEvent("MyEvent");
        Console.WriteLine($"Event Name: {eventInfo.Name}");
    }
}
using System;
using System.Reflection;

class MyClass
{
    public void MyMethod() { }
    public int MyProperty { get; set; }
    public string myField;
    public event EventHandler MyEvent;
}

class Program
{
    static void Main()
    {
        // Get MethodInfo for MyMethod
        MethodInfo methodInfo = typeof(MyClass).GetMethod("MyMethod");
        Console.WriteLine($"Method Name: {methodInfo.Name}");

        // Get PropertyInfo for MyProperty
        PropertyInfo propertyInfo = typeof(MyClass).GetProperty("MyProperty");
        Console.WriteLine($"Property Name: {propertyInfo.Name}");

        // Get FieldInfo for myField
        FieldInfo fieldInfo = typeof(MyClass).GetField("myField");
        Console.WriteLine($"Field Name: {fieldInfo.Name}");

        // Get EventInfo for MyEvent
        EventInfo eventInfo = typeof(MyClass).GetEvent("MyEvent");
        Console.WriteLine($"Event Name: {eventInfo.Name}");
    }
}
Imports System
Imports System.Reflection

Friend Class [MyClass]
	Public Sub MyMethod()
	End Sub
	Public Property MyProperty() As Integer
	Public myField As String
	Public Event MyEvent As EventHandler
End Class

Friend Class Program
	Shared Sub Main()
		' Get MethodInfo for MyMethod
		Dim methodInfo As MethodInfo = GetType([MyClass]).GetMethod("MyMethod")
		Console.WriteLine($"Method Name: {methodInfo.Name}")

		' Get PropertyInfo for MyProperty
		Dim propertyInfo As PropertyInfo = GetType([MyClass]).GetProperty("MyProperty")
		Console.WriteLine($"Property Name: {propertyInfo.Name}")

		' Get FieldInfo for myField
		Dim fieldInfo As FieldInfo = GetType([MyClass]).GetField("myField")
		Console.WriteLine($"Field Name: {fieldInfo.Name}")

		' Get EventInfo for MyEvent
		Dim eventInfo As EventInfo = GetType([MyClass]).GetEvent("MyEvent")
		Console.WriteLine($"Event Name: {eventInfo.Name}")
	End Sub
End Class
VB   C#

輸出

C# 反射(它如何對開發人員起作用):圖3

介紹 IronPDF

IronPDF - 官方網站是一個強大的 C# 程式庫,為 .NET 應用程式提供了一整套處理 PDF 文件的功能。 它讓開發者能夠輕鬆地使用簡單直觀的 API 來創建、操作和提取現有物件中的數據,例如 PDF 文件。

IronPDF 的一個顯著功能是能夠無縫整合到現有的 C# 專案中,使其成為新增 PDF 生成和操作功能的絕佳選擇。

IronPDF 的主要功能

IronPDF的一些主要功能如下:

  1. PDF 生成: 輕鬆從頭開始生成 PDF 文件或將 HTML、圖像和其他格式轉換為 PDF。

  2. PDF 操作: 編輯現有的 PDF,通過添加、刪除或修改文字、圖像和註釋來進行修改。

  3. PDF提取: 從PDF文件中提取文本、圖片和元數據以便進一步處理。

  4. HTML 到 PDF 轉換: 將 HTML 內容,包括 CSS 和 JavaScript,轉換為高質量的 PDF。

  5. PDF 表單: 程式化地建立和填寫互動式 PDF 表單。

  6. 安全性: 應用加密和密碼保護來確保 PDF 文件的安全。

    現在,讓我們通過詳細的代碼範例來探索如何在 C# 中使用反射與 IronPDF。

使用 C# 反射與 IronPDF

在這個簡單的範例中,我們將使用 C# 反射來獲取 IronPDF PDF 文件對象的資訊。

安裝 IronPDF NuGet 套件

請確保將 IronPDF NuGet 套件安裝到您的專案中。 您可以使用 NuGet 套件管理器控制台來執行此操作:

Install-Package IronPdf

使用 C# Reflection 獲取 IronPDF PDF Document Object 的數據

using IronPdf;
using System;

Type PDF = typeof(PdfDocument);
Console.WriteLine("Information about the PdfDocument type:");
Console.WriteLine($"Type Name: {PDF.Name}");
Console.WriteLine($"Full Name: {PDF.FullName}");
Console.WriteLine($"Assembly Qualified Name: {PDF.AssemblyQualifiedName}");
Console.WriteLine("\nMembers:");
foreach (var memberInfo in PDF.GetMembers())
{
    Console.WriteLine($"{memberInfo.MemberType} {memberInfo.Name}");
}
using IronPdf;
using System;

Type PDF = typeof(PdfDocument);
Console.WriteLine("Information about the PdfDocument type:");
Console.WriteLine($"Type Name: {PDF.Name}");
Console.WriteLine($"Full Name: {PDF.FullName}");
Console.WriteLine($"Assembly Qualified Name: {PDF.AssemblyQualifiedName}");
Console.WriteLine("\nMembers:");
foreach (var memberInfo in PDF.GetMembers())
{
    Console.WriteLine($"{memberInfo.MemberType} {memberInfo.Name}");
}
Imports Microsoft.VisualBasic
Imports IronPdf
Imports System

Private PDF As Type = GetType(PdfDocument)
Console.WriteLine("Information about the PdfDocument type:")
Console.WriteLine($"Type Name: {PDF.Name}")
Console.WriteLine($"Full Name: {PDF.FullName}")
Console.WriteLine($"Assembly Qualified Name: {PDF.AssemblyQualifiedName}")
Console.WriteLine(vbLf & "Members:")
For Each memberInfo In PDF.GetMembers()
	Console.WriteLine($"{memberInfo.MemberType} {memberInfo.Name}")
Next memberInfo
VB   C#

提供的 C# 程式碼使用反射從 IronPDF 庫中獲取有關 PdfDocument 型別的資訊。 最初,typeof(PdfDocument) expression 用於檢索表示 PdfDocument 類型的 Type 對象。

隨後,所獲取的 Type 物件的各種屬性將被列印到控制台,包括類型名稱、完整名稱,以及程序集限定名稱。

此外,代碼使用 foreach 迴圈來遍歷 PdfDocument 類型的成員,列印每個成員的信息,例如其成員類型和名稱。

這種方法展示了如何使用反射在運行時動態檢查PdfDocument類型對象的結構和元數據,從而提供對IronPDF庫的PdfDocument類的組成及所有公共成員的深入了解。

輸出:

C# 反射(對開發人員的工作原理):圖 4

結論

C# 反射是一種強大的機制,使開發人員能夠在運行時動態檢查和操作類型的結構。

本文探討了與 C# 反射相關的關鍵概念、使用案例和最佳實踐,強調了其在創建靈活且可擴展應用程式中的重要性。

此外,集成強大的 PDF 操作庫 IronPDF,進一步展示了 C# 反射在動態獲取 PdfDocument 類型資訊方面的多樣性。

當開發人員利用這些功能時,他們可以靈活地調整其應用程式以適應不斷變化的要求和情境,展現了C#的動態特性,以及像IronPDF這樣的庫在增強文件處理能力方面的寶貴貢獻。

IronPDF 是一個有良好文件記錄的函式庫,並提供許多教學。 要查看教學課程,請訪問IronPDF 教程文檔,這為開發者提供了一個更大的機會來了解其功能。

< 上一頁
NPlot C# (如何為開發者工作)
下一個 >
Npgsql C# .NET(開發人員如何使用)

準備開始了嗎? 版本: 2024.12 剛剛發布

免費 NuGet 下載 總下載次數: 11,622,374 查看許可證 >