Microsoft.CSharp.RuntimeBinder.SymbolTable.GetTypeByName C# (CSharp) Метод

GetTypeByName() приватный статический Метод

private static GetTypeByName ( Type &cachedResult, string name ) : Type
cachedResult System.Type
name string
Результат System.Type
        private static Type GetTypeByName(ref Type cachedResult, string name)
        {
            if ((object)cachedResult == s_Sentinel)
            {
                System.Threading.Interlocked.CompareExchange(ref cachedResult, Type.GetType(name, throwOnError: false), s_Sentinel);
            }

            return cachedResult;
        }