public bool IsInstantiationTerse(Type type)
        {
            if (!m_IsTerseCache.ContainsKey(type))
            {
                m_IsTerseCache[type] = m_InnerTypeHandler.IsInstantiationTerse(type);
            }

            return(m_IsTerseCache[type]);
        }
예제 #2
0
 public bool IsInstantiationTerse(Type type)
 {
     return(m_InnerHandler.IsInstantiationTerse(type));
 }
        public bool IsInstantiationTerse(Type type)
        {
            var innerType = GetNullableType(type);

            return(m_RootHandler.IsInstantiationTerse(innerType));
        }