Is suck or sucks? I do not have a problem with the Intellisense, but rather
with the fact that C# does not keep up with you like VB.NET (for the record,
I code mostly in C#). That should change in the next version, from the
rumors I have heard.
The syntax in VB.NET helps some, as you have to type in declarations like so
in C#:
SqlConnection conn;
But, you can use fully qualified names:
System.Data.SqlClient.SqlConnection conn;
to get Intellisense. Or an alias:
using System.Data.SqlClient = sql;
VB.NET is easier here, as you type:
Dim conn As SqlConnection
and have a drop down.
Is this what you are talking about?
--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
**********************************************************************
Think Outside the Box!
**********************************************************************