user710502
user710502

Reputation: 11471

Auto complete property in asp.net c#

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

Answers (3)

Erik Dietrich
Erik Dietrich

Reputation: 6090

I think what you're seeing is CodeRush. If this visual is the green you're referring to, it's CodeRush:

enter image description here

Upvotes: 1

SQAHero
SQAHero

Reputation: 41

also, if intelisence is ever "not there", simply press control + space. Works in Netbeans and Visual Studio

Upvotes: 0

jrummell
jrummell

Reputation: 43077

This is done with snippets. The default snippet can be expanded by typing prop and then pressing TAB.

Upvotes: 6

Related Questions