リフレクション オブジェクトは、実行時に型情報を取得するために使用されます。実行中のプログラムのメタデータへのアクセスを許可するクラスは、System.Reflection 名前空間にあります。
以下は Reflections のアプリケーションです。
これにより、実行時にプロパティ情報を表示できます。
これにより、アセンブリ内のさまざまな型をチェックし、これらの型をインスタンス化できます。
実行時に新しい型を作成し、これらの型を使用していくつかのタスクを実行できます。
例を見てみましょう -
using System; [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(); } } }
以上がC# でのリフレクションの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。