728x90
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) { Console.WriteLine("포함된 메소드: {0}", member); } } } }
반응형
'프로그래밍 TIP > .NET' 카테고리의 다른 글
[C#] ListView 에 동적으로 삽입한 Item 에 포커스주고 자동으로 스크롤 해주기 (2) | 2009.02.16 |
---|---|
[C#] RichTextBox 안에 컨트롤 삽입하고 스크롤 하기 (0) | 2009.02.16 |
[C#] RichTextBox의 특정문자에 이벤트 주기 (2) | 2009.02.16 |
[C#] 객체명 문자열을 실제 객체로 바꾸는 방법(Late Binding) (0) | 2009.02.16 |
[C#] Web Brower Contrl 에서 특정컨트롤의 이벤트 발생시키기 (0) | 2009.02.16 |