Skip to content

Commit

Permalink
Update field references in property accessors (dotnet#108225)
Browse files Browse the repository at this point in the history
  • Loading branch information
cston authored and sirntar committed Sep 30, 2024
1 parent 7e1ae97 commit e43a143
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 e43a143

Please sign in to comment.