클래스의 속성 목록을 가져오는 방법은 무엇입니까? 클래스의 모든 속성 목록을 가져오려면 어떻게 해야 합니까?반영; 예를 들어: obj.GetType().GetProperties(); 유형: typeof(Foo).GetProperties(); 예: class Foo { public int A {get;set;} public string B {get;set;} } ... Foo foo = new Foo {A = 1, B = "abc"}; foreach(var prop in foo.GetType().GetProperties()) { Console.WriteLine("{0}={1}", prop.Name, prop.GetValue(foo, null)); } 피드백을 따르는 중... 정적 속성 값을 가져오려면 다음..