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