Reputation: 11471
I have noticed many times developers use like a quick key to generate properties but I can not find what that key is. Is there a list i can look at with all the short keys?. what i am referring to is like when you do
Highlight method + F12
takes you to the reference (for example), there is one specifically that would help me a lot, the property auto complete it usually puts something like
public int something
, and the color shows as green or something. Any help would be much appreciated.
Upvotes: 1
Views: 2383
Reputation: 6090
I think what you're seeing is CodeRush. If this visual is the green you're referring to, it's CodeRush:
Upvotes: 1
Reputation: 41
also, if intelisence is ever "not there", simply press control + space. Works in Netbeans and Visual Studio
Upvotes: 0
Reputation: 43077
This is done with snippets. The default snippet can be expanded by typing prop
and then pressing TAB.
Upvotes: 6