Skip to content

Commit cd79a15

Browse files
authored
changed files by pdets auto publish service, publishid[4447dee8-cd67-4a77-8a35-8ea3d95afea9] and do [publish].
1 parent f2cd1de commit cd79a15

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

learn-pr/wwl-azure/implement-class-properties-methods/includes/6-create-class-methods.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ A method is a code block that contains a series of statements. A program causes
44

55
Methods are declared in a class, record, or struct by specifying:
66

7-
1. An optional access level, such as `public` or `private`. The default is `private`.
8-
1. Optional modifiers such as `abstract` or `sealed`.
9-
1. The return value, or `void` if the method has none.
10-
1. The method name.
11-
1. Any method parameters. Method parameters are enclosed in parentheses and are separated by commas. Empty parentheses indicate that the method requires no parameters.
7+
- An optional access level, such as `public` or `private`. The default is `private`.
8+
- Optional modifiers such as `abstract` or `sealed`.
9+
- The return value, or `void` if the method has none.
10+
- The method name.
11+
- Any method parameters. Method parameters are enclosed in parentheses and are separated by commas. Empty parentheses indicate that the method requires no parameters.
1212

1313
These parts work together to form the method signature.
1414

0 commit comments

Comments
 (0)