Skip to main content

Posts

Download Power Commands for Visual Studio 2010

PowerCommands 10.0 is a set of useful extensions for the Visual Studio 2010 adding additional functionality to various areas of the IDE. Download:  http://visualstudiogallery.msdn.microsoft.com/e5f41ad9-4edc-4912-bca3-91147db95b99 Below is a list of the commands included in PowerCommands for Visual Studio 2010 version 10.0. Enable/Disable PowerCommands in Options dialog This feature allows you to select which commands to enable in the Visual Studio IDE. Point to the Tools menu, then click Options. Expand the PowerCommands options, then click Commands. Check the commands you would like to enable. Note: All power commands are initially defaulted Enabled. Format document on save / Remove and Sort Usings on save The Format document on save option formats the tabs, spaces, and so on of the document being saved. It is equivalent to pointing to the Edit menu, clicking Advanced, and then clicking Format Document. The Remove and sort usings option removes unused using state...

Download Visual C# 2010 Code Samples

You can now download Visual C# 2010 code samples from the MSDN website. Download Link : http://code.msdn.microsoft.com/cs2010samples/Release/ProjectReleases.aspx?ReleaseId=4175 Also don’t forget to check the document available on the above link which describes the new features in C# 4.0. Happy Learning !!!

Get e-book : Moving to Visual Studio 2010

Today while visiting MSDN I got a link to download Free E-Book on Moving to Visual Studio 2010. So thought to share it with my readers. It's a book that will help professional developers move from previous versions of Visual Studio (starting with 2003 and on up). Download it from here: http://www.microsoft.com/downloads/details.aspx?familyid=12A6DE81-C633-4F2C-A35F-CEA6FE772712&displaylang=en You can view XPS files only in Windows Internet Explorer. Before you download the XPS viewer please try to open the document in IE and see if it works.. if not then download the xps viewer from the below location. Please try it on a test machine only as this requires .Net Framework 3.0. Note: The e-book requires XPS viewer and you can download it from the below link. http://www.microsoft.com/downloads/details.aspx?familyid=12A6DE81-C633-4F2C-A35F-CEA6FE772712&displaylang=en   OR http://download.microsoft.com/download/4/d/a/4da3a5fa-ee6a-42b8-8bfa-ea5c4a458a7d/dotnetfx3setup.exe Ha...

Download Visual Studio 2010 and .NET Framework 4 Training Kit

Please find the link to download  April Release of the Visual Studio 2010 and .NET Framework 4 Training Kit. The Visual Studio 2010 and .NET Framework 4 Training Kit includes presentations, hands-on labs, and demos. This content is designed to help you learn how to utilize the Visual Studio 2010 features and a variety of framework technologies including: C# 4 Visual Basic 10 F# Parallel Extensions Windows Communication Foundation Windows Workflow Windows Presentation Foundation ASP.NET 4 Windows 7 Entity Framework ADO.NET Data Services Managed Extensibility Framework Visual Studio Team System http://www.microsoft.com/downloads/details.aspx?FamilyID=752CB725-969B-4732-A383-ED5740F02E93&displaylang=en Happy Learning !!!

What’s New in .Net Framework 4.0 – Article from MSDN

I found this article to be very informative and quick overview on the new enhancements as well news features in .Net Framework 4.0. The article provides information (enhancements/new features) in the following sections. Application Compatibility and Deployment Core New Features and Improvements Managed Extensibility Framework Parallel Computing Networking Web Client Data Windows Communication Foundation Windows Workflow Foundation View Article : http://msdn.microsoft.com/library/ms171868.aspx Happy Learning !!!

Get Visual Studio 2010 and .NET Framework 4 Training Course - From Channel 9

The Visual Studio 2010 and .NET Framework 4 Training Course includes videos and hands-on-labs designed to help you learn how to utilize the Visual Studio 2010 features and a variety of framework technologies including: C# 4.0, Visual Basic 10, F#, Parallel Computing Platform, WCF, WF, WPF, ASP.NET AJAX 4.0, ASP.NET MVC Dynamic Data. Lot’s of valuable videos, demos available on the Channel 9 – So let’s make the full usage of the contents and get more knowledgeable on .Net Framework 4.0 and VS 2010. Get the Course Contents : http://channel9.msdn.com/learn/courses/vs2010/ Happy Learning !!!

List of Default Values returned by Default Constructor in C# for Value Types

Please find the list of default values returned by Default Constructor for Value Types. Value Type Default Value bool FALSE byte 0 char '\0' decimal 0.0M double 0.0D enum The value produced by the expression (E)0, where E is the enum identifier. float 0.0F int 0 long 0L sbyte 0 short 0 struct The value produced by setting all value-type fields to their default values and all reference-type fields to null. uint 0 ulong 0 ushort 0 (Source : http://msdn.microsoft.com/en-us/library/83fhsxwc.aspx ) For more information please visit : http://msdn.microsoft.com/en-us/library/83fhsxwc.aspx Happy Learning !!!