当前位置: 首页>>代码示例>>C#>>正文


C# IType.GetScalarType方法代码示例

本文整理汇总了C#中IType.GetScalarType方法的典型用法代码示例。如果您正苦于以下问题:C# IType.GetScalarType方法的具体用法?C# IType.GetScalarType怎么用?C# IType.GetScalarType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IType的用法示例。


在下文中一共展示了IType.GetScalarType方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: IsIObservableType

        public static bool IsIObservableType(IType type)
        {
            var scalarType = type.GetScalarType();
            if (scalarType == null)
            {
                return false;
            }

            return scalarType.GetClrName().FullName == Constants.ObservableInterfaceName;
        }
开发者ID:oriches,项目名称:Resharper.ReactivePlugin,代码行数:10,代码来源:TypeHelper.cs

示例2: HasISchedulerSuperType

        public static bool HasISchedulerSuperType(IType type)
        {
            var scalarType = type.GetScalarType();
            if (scalarType == null)
            {
                return false;
            }

            return scalarType.GetClrName().FullName == Constants.SchedulerInterfaceName ||
                   scalarType.GetSuperTypes().Any(HasISchedulerSuperType);
        }
开发者ID:oriches,项目名称:Resharper.ReactivePlugin,代码行数:11,代码来源:TypeHelper.cs

示例3: IsSimple

        private bool IsSimple(IType type)
        {
            // todo fix for enum
            bool isEnum = false;
            IDeclaredType declaredType = type.GetScalarType();
            if (declaredType != null)
            {
                isEnum = declaredType.GetTypeElement() is IEnum;
            }

            return type.IsSimplePredefined() || isEnum;
        }
开发者ID:hmemcpy,项目名称:AgentMulder,代码行数:12,代码来源:StructureMapConvention.cs

示例4: CheckSingleType

 private static bool CheckSingleType(PredefinedType predefinedType, IPsiModule psiModule, IType type, ITypeConversionRule conversionRule, IType typeInDeclaration)
 {
     if (!type.IsGenericOrNonIEnumerable())
     {
         if (!type.IsSubtypeOf(predefinedType.Array))
             return true;
         IDeclaredType scalarType = type.GetScalarType();
         return scalarType != null && scalarType.IsImplicitlyConvertibleTo(typeInDeclaration, conversionRule);
     }
     IDeclaredType ienumerableOf = CollectionTypeUtil.CreateIEnumerableOf(psiModule, typeInDeclaration);
     return ienumerableOf == null || type.IsImplicitlyConvertibleTo(ienumerableOf, conversionRule);
 }
开发者ID:vilinski,项目名称:MemberName,代码行数:12,代码来源:MemberNameApplicableTypeMemberFilter.cs

示例5: IsArgumentTypeTheExpected

 protected override bool IsArgumentTypeTheExpected(IType type)
 {
     IDeclaredType declaredType;
     return type != null && (type.IsString() || ((declaredType = type.GetScalarType()) != null && declaredType.GetClrName().FullName == "System.Guid"));
 }
开发者ID:Catel,项目名称:Catel.ReSharper,代码行数:5,代码来源:IsNotNullOrEmptyContextAction.cs

示例6: IsPrimitiveArray

 private bool IsPrimitiveArray(IType type)
 {
     return type.IsArray() && IsSimple(type.GetScalarType());
 }
开发者ID:hmemcpy,项目名称:AgentMulder,代码行数:4,代码来源:StructureMapConvention.cs

示例7: IsChildArray

 private bool IsChildArray(IType type)
 {
     return type.IsArray() && !IsSimple(type.GetScalarType());
 }
开发者ID:hmemcpy,项目名称:AgentMulder,代码行数:4,代码来源:StructureMapConvention.cs


注:本文中的IType.GetScalarType方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。