Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/csharp/language-reference/keywords/class.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Accessing private members of `Child` from `Main` would only be possible if `Main

Types declared inside a class without an access modifier default to `private`, so the data members in this example would still be `private` if the keyword were removed.

Finally, notice that for the object created using the default constructor (`child3`), the age field was initialized to zero by default.
Finally, notice that for the object created using the default constructor (`child3`), the `age` field was initialized to zero by default.

## C# language specification

Expand Down