6 references to IsSpecialType
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (6)
ExpressionGenerator.cs (6)
125var isNotSingle = !IsSpecialType(type, SpecialType.System_Single); 136if (value is double && !IsSpecialType(type, SpecialType.System_Double)) 141if (value is uint && !IsSpecialType(type, SpecialType.System_UInt32)) 146if (value is long && !IsSpecialType(type, SpecialType.System_Int64)) 151if (value is ulong && !IsSpecialType(type, SpecialType.System_UInt64)) 160var isNotDecimal = !IsSpecialType(type, SpecialType.System_Decimal);