3 references to GetMethod
Microsoft.CodeAnalysis.CodeStyle.Fixes (3)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\CodeGeneration\Symbols\CodeGenerationPropertySymbol.cs (3)
47this.GetMethod, this.SetMethod); 67public bool IsReadOnly => this.GetMethod != null && this.SetMethod == null; 69public bool IsWriteOnly => this.GetMethod == null && this.SetMethod != null;