Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Elusive DataSet
Message
From
01/05/2008 11:40:09
 
General information
Forum:
ASP.NET
Category:
Other
Title:
Environment versions
OS:
Windows XP
Database:
MS SQL Server
Miscellaneous
Thread ID:
01314012
Message ID:
01314512
Views:
15
This message has been marked as a message which has helped to the initial question of the thread.
>>I do not know, sorry
>>
>>I downloaded it from here http://www.microsoft.com/downloads/details.aspx?FamilyID=333325fd-ae52-4e35-b531-508d977d32a6&DisplayLang=en
>>
>>http://download.microsoft.com/download/6/0/f/60fc5854-3cb8-4892-b6db-bd4f42510f28/dotnetfx35.exe
>>
>>
>>
>>When vs2008 already finds 3.5 installed, it skips the 3.5 installation step
>
>So far I like VS2008 much better. It seems to me that all the pages work much faster and I see less Postbacks when I used to see.

Hey,

That's nice.

Another bit you'll probably like is this

You do not have to define the type twice.
You can use var to define a new variable
It figures out what its type will be. Not that difficult, since in vs2005, when you typed new it had 'guessed' it would be a StringBuilder (see example)
// example
// in vs2005
   int i = 123;
   StringBuilder sb = new StringBuilder(1024);  

// in vs 2008
   var i = 123;
   var sb = new StringBuilder(1024);
Gregory
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform