INtelisense with C#

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Dear all,

I come from VB.net world and I start with C#now due to customer demand :-(
I was used undeer VB that as long as you type the AS ( to define the type of
your variable) the intelisense pops up with all data type, which easy when
you do not remember a type you are not using so frequently...and its fast to
catch it.

Now in c#, the type need to be specify first and then your variables. The
only way to get the intellisense pop up immeditaly is o type system first ,
and the catch your proper type...

Or is they a way to set the envrionement for intelinsesnce popup as soon as
you need to specify a type during declaration ? similar as VB ?

thnaks for simple question
regards
serge
 
Now in c#, the type need to be specify first and then your variables. The
only way to get the intellisense pop up immeditaly is o type system first ,
and the catch your proper type...

Can't you just hit Ctrl+Space?

Or is they a way to set the envrionement for intelinsesnce popup as soon as
you need to specify a type during declaration ? similar as VB ?

When you're at the beginning of a new line, how is the IDE going to
know that you're going to declare a variable on that line, and not
write some other kind of expression?


Mattias
 
Back
Top