MethodInfo : MethodInfo : Reflection C# Source Code


Custom Search

C# Source Code » Reflection » MethodInfo »

 

MethodInfo








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


public class Starter {
    public static void Main() {
        Object obj = new Object();
        Type t = obj.GetType();
        foreach (MethodInfo m in t.GetMethods()) {
            Console.WriteLine(m.Name);
        }
    }
}

 
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo Reflection
» MethodInfo