Update and rename powershell.md to Powershell.md

Add useful links on MSDN
This commit is contained in:
Konstantin
2015-02-17 11:18:33 +03:00
parent 7a6be4f3c8
commit 24bd2017c0
+9
View File
@@ -1,8 +1,17 @@
# Powershell name convention # Powershell name convention
## Powershell object name
| Object | Verb-Noun | Notation | Length | Plural| Prefix | Suffix | Example | | Object | Verb-Noun | Notation | Length | Plural| Prefix | Suffix | Example |
|-----------|-----------|-----------------------|--------|-------|--------|--------|---------------------| |-----------|-----------|-----------------------|--------|-------|--------|--------|---------------------|
| Cmdlet | Yes | PascalCase (for Noun) | 50 | No | Yes | No | Import-PREFIXModule | | Cmdlet | Yes | PascalCase (for Noun) | 50 | No | Yes | No | Import-PREFIXModule |
| Function | Yes | PascalCase (for Noun) | 50 | No | Yes | No | Get-PREFIXDbRecord | | Function | Yes | PascalCase (for Noun) | 50 | No | Yes | No | Get-PREFIXDbRecord |
| Parameter | No | PascalCase | 30 | No | No | No | MyParameter | | Parameter | No | PascalCase | 30 | No | No | No | MyParameter |
## Useful Links
- [MSDN Development Guidelines]
- [MSDN Approved Verbs]
[MSDN Development Guidelines]:https://msdn.microsoft.com/en-us/library/dd878270%28v=vs.85%29.aspx
[MSDN Approved Verbs]:https://msdn.microsoft.com/en-us/library/ms714428%28v=vs.85%29.aspx