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