Skip to content

Commit

Permalink
Update field references in property accessors (#108225)
Browse files Browse the repository at this point in the history
  • Loading branch information
cston committed Oct 3, 2024
1 parent 068bf1a commit 86ffed8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public AddLambdaCapturingThis()
field = "abcd";
}

public string GetField => field;
public string GetField => this.field;

private string field;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public AddLambdaCapturingThis()
field = "abcd";
}

public string GetField => field;
public string GetField => this.field;

private string field;

Expand Down

0 comments on commit 86ffed8

Please sign in to comment.