System.RuntimeAssembly.ProcessType C# (CSharp) Méthode

ProcessType() private méthode

private ProcessType ( RuntimeTypeHandle handle ) : RuntimeType
handle RuntimeTypeHandle
Résultat RuntimeType
        internal RuntimeType ProcessType(RuntimeTypeHandle handle)
        {
            typeHandles.AddLast(handle);
            var type = new RuntimeType(handle);
            typeList.AddLast(type);
            return type;
        }