เนมสเปซ System.Reflection มีคลาสที่ช่วยให้คุณได้รับข้อมูลเกี่ยวกับแอปพลิเคชันและเพิ่มประเภท ค่า และอ็อบเจ็กต์ในแอปพลิเคชันแบบไดนามิก
มีตัวสร้างโมดูลที่เริ่มต้นอินสแตนซ์ใหม่ของคลาสโมดูล โมดูลคือไฟล์ปฏิบัติการแบบพกพาที่มีคลาสและอินเทอร์เฟซตั้งแต่หนึ่งรายการขึ้นไป
มาดูตัวอย่าง System.Reflection ใน C# กัน −
ตัวอย่าง
using System; using System.Reflection; [AttributeUsage(AttributeTargets.All)] public class HelpAttribute : System.Attribute { public readonly string Url; public string Topic // Topic is a named parameter { get { return topic; } set { topic = value; } } public HelpAttribute(string url) // url is a positional parameter { this.Url = url; } private string topic; } [HelpAttribute("Information on the class MyClass")] class MyClass { } namespace AttributeAppl { class Program { static void Main(string[] args) { System.Reflection.MemberInfo info = typeof(MyClass); object[] attributes = info.GetCustomAttributes(true); for (int i = 0; i < attributes.Length; i++) { System.Console.WriteLine(attributes[i]); } Console.ReadKey(); } } }