IKVM.Reflection.Type.InplaceBindTypeParameters C# (CSharp) Méthode

InplaceBindTypeParameters() static private méthode

static private InplaceBindTypeParameters ( IGenericBinder binder, Type types ) : void
binder IGenericBinder
types Type
Résultat void
        internal static void InplaceBindTypeParameters(IGenericBinder binder, Type[] types)
        {
            for (int i = 0; i < types.Length; i++)
            {
                types[i] = types[i].BindTypeParameters(binder);
            }
        }