Get MethodInfo and MemberInfo : MemberInfo « Reflection « C# / C Sharp






Get MethodInfo and MemberInfo

      

using System;
using System.Reflection;

public class Apple {
    public int nSeeds;
    public void Ripen() {
    }
}

public class TypeOfApp {
    static void Main(string[] args) {
        Type t = typeof(Apple);
        string className = t.ToString();

        Console.WriteLine(className);

        Console.WriteLine(className);
        MethodInfo[] methods = t.GetMethods();
        foreach (MethodInfo method in methods) {
            Console.WriteLine(method.ToString());
        }

        Console.WriteLine(className);
        MemberInfo[] allMembers = t.GetMembers();
        foreach (MemberInfo member in allMembers) {
            Console.WriteLine(member.ToString());
        }
    }
}

   
    
    
    
    
  








Related examples in the same category

1.Deeper Reflection:Finding MembersDeeper Reflection:Finding Members
2.Get variable base type and public numbers
3.Gets the member's underlying type.
4.Gets the member's value on the object.
5.Sets the member's value on the target object.
6.Determines whether the specified MemberInfo can be read.
7.Determines whether the specified MemberInfo can be set.
8.MemberInfo.DeclaringType Property gets the class that declares this member.
9.MemberInfo.GetCustomAttributes returns an array of all custom attributes applied to this member.
10.Get a MemberTypes value indicating the type of the member(method, constructor, event, and so on.)
11.Gets the module in which the type that declares the member represented by the current MemberInfo is defined.Gets the module in which the type that declares the member represented by the current MemberInfo is defined.
12.Gets the name of the current member.
13.Gets the class object that was used to obtain this instance of MemberInfo.
14.Marks each type of member that is defined as a derived class of MemberInfo.
15.Gets a MethodBase that represents the declaring method, if the current Type represents a type parameter of a generic method.
16.Gets position of type parameter in the type parameter list of the generic type or method
17.Getter and Setter check
18.Sort Members List
19.Call Non Public Method