using System; using System.Reflection; class Program { static void Main() { Console.WriteLine("Egy objektumon milyen metodusok hasznalhatok"); Object obj = new Object(); Type t = obj.GetType(); foreach (MethodInfo mi in t.GetMethods()) Console.WriteLine(mi.Name); } }