System.Dynamic.Utils.TypeExtensions.GetReturnType C# (CSharp) 메소드

GetReturnType() 공개 정적인 메소드

public static GetReturnType ( this mi ) : Type
mi this
리턴 Type
        public static Type GetReturnType(this MethodBase mi)
        {
            return (mi.IsConstructor) ? mi.DeclaringType : ((MethodInfo)mi).ReturnType;
        }