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


C# IType.IsString方法代码示例

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


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

示例1: HasCorrectType

 private bool HasCorrectType(PredefinedType predefinedType, IType type)
 {
     var typeConversionRule = myOwnerDeclaration.GetTypeConversionRule();
     if (type.IsString() || !type.IsSubtypeOf(predefinedType.IEnumerable))
         return false;
     var parameterDeclaration = myOwnerDeclaration as IRegularParameterDeclaration;
     if (parameterDeclaration != null)
         return CheckSingleType(predefinedType, myOwnerDeclaration.GetPsiModule(), type, typeConversionRule, parameterDeclaration.Type);
     var methodDeclaration = myOwnerDeclaration as IMethodDeclaration;
     if (methodDeclaration != null && methodDeclaration.ParameterDeclarations.Count == 1)
         return CheckSingleType(predefinedType, myOwnerDeclaration.GetPsiModule(), type, typeConversionRule, methodDeclaration.ParameterDeclarations[0].Type);
     return true;
 }
开发者ID:vilinski,项目名称:MemberName,代码行数:13,代码来源:MemberNameApplicableTypeMemberFilter.cs

示例2: 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

示例3: IsAvailableForType

 protected override bool IsAvailableForType(IType type) => type.IsString();
开发者ID:prodot,项目名称:ReCommended-Extension,代码行数:1,代码来源:StringNotNullAndNotEmpty.cs

示例4: IsArgumentTypeTheExpected

 protected override bool IsArgumentTypeTheExpected(IType type)
 {
     return type != null && (type.Classify == TypeClassification.REFERENCE_TYPE || type.IsNullable())
            && !(type is IArrayType || type.IsString());
 }
开发者ID:Catel,项目名称:Catel.ReSharper,代码行数:5,代码来源:IsNotNullContextAction.cs

示例5: IsArgumentTypeTheExpected

 protected override bool IsArgumentTypeTheExpected(IType type)
 {
     return type != null && type.IsString();
 }
开发者ID:Catel,项目名称:Catel.ReSharper,代码行数:4,代码来源:IsMatchContextAction.cs

示例6: IsArgumentTypeTheExpected

 protected override bool IsArgumentTypeTheExpected(IType type)
 {
     // NOTE: type.IsArray() is false, I don't know why.
     return type != null && type is IArrayType && !type.IsString();
 }
开发者ID:Catel,项目名称:Catel.ReSharper,代码行数:5,代码来源:IsNotNullOrEmptyArrayContextAction.cs


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