예제 #1
0
        public static MethodDesc GetOptionalHelperEntryPoint(this TypeSystemContext context, string typeName, string methodName)
        {
            MetadataType helperType   = context.GetOptionalHelperType(typeName);
            MethodDesc   helperMethod = helperType?.GetMethod(methodName, null);

            return(helperMethod);
        }