File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 1
1
# Powershell name convention
2
2
3
3
4
+ ## Powershell object name
4
5
| Object | Verb-Noun | Notation | Length | Plural| Prefix | Suffix | Example |
5
6
| -----------| -----------| -----------------------| --------| -------| --------| --------| ---------------------|
6
7
| Cmdlet | Yes | PascalCase (for Noun) | 50 | No | Yes | No | Import-PREFIXModule |
7
8
| Function | Yes | PascalCase (for Noun) | 50 | No | Yes | No | Get-PREFIXDbRecord |
8
9
| Parameter | No | PascalCase | 30 | No | No | No | MyParameter |
10
+
11
+
12
+ ## Useful Links
13
+ - [ MSDN Development Guidelines]
14
+ - [ MSDN Approved Verbs]
15
+
16
+ [ MSDN Development Guidelines ] :https://msdn.microsoft.com/en-us/library/dd878270%28v=vs.85%29.aspx
17
+ [ MSDN Approved Verbs ] :https://msdn.microsoft.com/en-us/library/ms714428%28v=vs.85%29.aspx
You can’t perform that action at this time.
0 commit comments