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(); } } }