6 references to IsSpecialType
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (6)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\CodeGeneration\ExpressionGenerator.cs (6)
132
var isNotSingle = !
IsSpecialType
(type, SpecialType.System_Single);
143
if (value is double && !
IsSpecialType
(type, SpecialType.System_Double))
148
if (value is uint && !
IsSpecialType
(type, SpecialType.System_UInt32))
153
if (value is long && !
IsSpecialType
(type, SpecialType.System_Int64))
158
if (value is ulong && !
IsSpecialType
(type, SpecialType.System_UInt64))
167
var isNotDecimal = !
IsSpecialType
(type, SpecialType.System_Decimal);