using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ReflectionExam { class TestClass { public void testMethod1() { } public void testMethod2() { } } class Program { static void Main(string[] args) { Type type = typeof(TestClass); System.Reflection.MemberInfo[] members = type.GetMethods(); foreach (System.Reflection.MethodInfo member in members) { Conso..