Boo.Lang.Compiler.Steps.EmitAssembly.GetConstructedMethodInfo C# (CSharp) Метод

GetConstructedMethodInfo() приватный Метод

Retrieves the MethodInfo for a generic constructed method.
private GetConstructedMethodInfo ( IConstructedMethodInfo constructedInfo ) : MethodInfo
constructedInfo IConstructedMethodInfo
Результат System.Reflection.MethodInfo
        private MethodInfo GetConstructedMethodInfo(IConstructedMethodInfo constructedInfo)
        {
            Type[] arguments = Array.ConvertAll<IType, Type>(constructedInfo.GenericArguments, GetSystemType);
            return GetMethodInfo(constructedInfo.GenericDefinition).MakeGenericMethod(arguments);
        }

Same methods

EmitAssembly::GetConstructedMethodInfo ( IType targetType, MethodInfo mi ) : MethodInfo
EmitAssembly