2 references to CreateAccessorSymbol
Microsoft.CodeAnalysis.Features (2)
ConvertAnonymousType\AbstractConvertAnonymousTypeToClassCodeRefactoringProvider.cs (2)
354
var getMethod = prop.GetMethod != null ?
CreateAccessorSymbol
(prop, MethodKind.PropertyGet) : null;
355
var setMethod = prop.SetMethod != null ?
CreateAccessorSymbol
(prop, MethodKind.PropertySet) : null;