GetMethods() 공개 정적인 메소드

public static GetMethods ( Type type ) : IEnumerable
type System.Type
리턴 IEnumerable
예제 #1
0
 private void AddClass(XElement parent, Type type)
 {
     AddClassElements(parent, MagickScriptTypes.GetProperties(type), MagickScriptTypes.GetMethods(type));
     AddClassAttributes(parent, MagickScriptTypes.GetProperties(type));
 }