System.RuntimeAssembly.ProcessType C# (CSharp) Method

ProcessType() private method

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