Code Snippet for Properties with Prefix Notation
As I wrote in previous blog posts, I still use prefix notation for private members, one reason being IntelliSense. If you’re like me, you may find these code snippets handy:
Name: | Boolean Property |
Description: | Code snippets for a boolean property. |
Shortcut: | bp |
Result: | private bool m_bMyProperty;
|
| |
Name: | Integer Property |
Description: | Code snippets for an integer property. |
Shortcut: | ip |
Result: |
|
| |
Name: | Enum Property |
Description: | Code snippets for an enum property. |
Shortcut: | ep |
Result: | private TheType m_eTheName; |
| |
Name: | Object Property |
Description: | Code snippets for an object property. |
Shortcut: | op |
Result: | private TheType m_objTheName;
|
Download: | Properties.snippet |