Get parameter information by using ConstructorInfo and ParameterInfo : ConstructorInfo « Reflection « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Reflection » ConstructorInfoScreenshots 
Get parameter information by using ConstructorInfo and ParameterInfo
 

using System;
using System.Collections;
using System.Reflection;

public class MainClass{
    public static void Main() {
        Assembly LoadedAsm = Assembly.LoadFrom("yourName");
        Console.WriteLine(LoadedAsm.FullName);
        Type[] LoadedTypes = LoadedAsm.GetTypes();
        if (LoadedTypes.Length == 0) {
            Console.WriteLine("\tNo Types!");
        else {
            Console.WriteLine("\tFound Types:");
            foreach (Type t in LoadedTypes) {

                if (t.IsPublic && !t.IsEnum && !t.IsValueType) {
                    Console.WriteLine("Type: {0}", t.FullName);
                    PrintConstructorInfo(t);
                }
            }
        }
    }
    private static  void PrintConstructorInfo(Type t) {
        ConstructorInfo[] ctors = t.GetConstructors();
        foreach (ConstructorInfo c in ctors) {
            ParameterInfo[] pList = c.GetParameters();
            if (pList.Length == 0) {
                if (c.IsStatic)
                    Console.WriteLine("\tFound static Constructor.");
                else
                    Console.WriteLine("\tFound default consructor.");
            else {
                Console.WriteLine("\tConstructor:");
                foreach (ParameterInfo p in pList) {
                    Console.WriteLine("\t\t{0} {1}", p.ParameterType.FullName,p.Name);
                }
            }
        }
    }
}

 
Related examples in the same category
1.Call GetConstructor to get the constructor
2.Invoke in Constructor through ConstructorInfo
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.