Techbubbles

Archive of ‘.NET Framework’ category

Immutable Collections in .NET Framework

What are Immutable Collections?
Immutable Collections are collections which guarantees that they never change their content and completely thread safe. Immutable suggests that data will not change and will not ever change and moreover you can hold a reference to it as long as you want. Why should we use Immutable Collections when there are Readonly . Continue reading...

Guidelines for Developing Class Libraries in .NET

This post explains about design guidelines for developing class libraries that extends the .NET Framework. Following design guidelines provides benefits of consistency and unified programming model for developers.

Naming Conventions for Casing Identifiers
There are two different styles in Casing Identifiers
Related Posts:.NET Framework 4 File IO Features.NET Framework 4 BCLImmutable Collections in .NET FrameworkCreating an OData service . Continue reading...

.NET Framework 4 File IO Features

New methods are added to the System.IO.File class in .NET framework 4.0 for reading and writing text files.
ReadLines

In earlier version we have used File.ReadAllLines method which returns a string array of all lines in the file.

String[] lines = File.ReadAllLines(“file.txt”);

Related Posts:Guidelines for Developing Class Libraries in .NET.NET Framework 4 BCLImmutable Collections in .NET FrameworkCreating an . Continue reading...

GAC in .NET Framework

The Global Assembly Cache known as the GAC is to enable sharing of assemblies across several managed applications installed on a machine. All managed developers can install assemblies to the GAC and share them across applications.
When to Use the GAC
When should an assembly be installed in the GAC as opposed to assembly in application base? . Continue reading...

Visual Studio 2010 Beta 1 and .NET FW 4.0 Beta 1 Released!

 
Yesterday Visual Studio 2010 Beta1 and .NET FW 4.0 Beta 1 was released and you can download it from here. Download Beta 1.
More about Highlights in VS 2010 Beta1 can found in Jason Blog.
Enhancements in ASP.NET and discussions on latest version here
Feedback, Questions related to VS  2010 can be found here

Next posts I . Continue reading...

Visual Studio 2008 SP1 Features

Introduction
Visual Studio 2008 service pack 1(SP1) and .NET Framework 3.5 SP1 offers the developers to develop rapid,responsiveness and stable applications. It allows the developers to develop applications that optimized for windows vista, SQL server, MS 2007 office system and the web.
Features Overview

WPF Designers
SQL Server 2008 support
ADO.NET Entity Designer
TFS enhancements
Performance enhancements

You can download the Visual Studio . Continue reading...