4 references to GetDelegateType
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
ITypeInferenceServiceExtensions.cs (1)
49
var delegateTypes = types.Select(t => t.
GetDelegateType
(semanticModel.Compilation));
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (2)
CSharpTypeInferenceService.TypeInferrer.cs (2)
1650
var type = types.FirstOrDefault().InferredType.
GetDelegateType
(this.Compilation);
1799
var delegateType = argumentTypes.FirstOrDefault().InferredType.
GetDelegateType
(this.Compilation);
Microsoft.CodeAnalysis.VisualBasic.CodeStyle.Fixes (1)
VisualBasicTypeInferenceService.TypeInferrer.vb (1)
938
Dim delegateType = argumentTypes.FirstOrDefault().InferredType.
GetDelegateType
(Me.Compilation)