using System.Reflection; namespace FormApplication { public class Form { Type t = typeof(FormApplication.UserClass); MemberInfo[] member = t.FindMembers(MemberTypes.Field, BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Static, null, null); foreach(MemberInfo m in member) { MessageBox.Show(m.Name); //출력 결과 => sUserName, dt 이름 출력 } } public class ..