<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>TechBubbles &#187; .NET Framework</title>
	<atom:link href="http://www.techbubbles.com/category/net-framework/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techbubbles.com</link>
	<description></description>
	<lastBuildDate>Sun, 05 Feb 2012 22:18:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Guidelines for Developing Class Libraries in .NET</title>
		<link>http://www.techbubbles.com/net-framework/guidelines-for-developing-class-libraries-in-net/</link>
		<comments>http://www.techbubbles.com/net-framework/guidelines-for-developing-class-libraries-in-net/#comments</comments>
		<pubDate>Sun, 06 Feb 2011 20:43:11 +0000</pubDate>
		<dc:creator>Kalyan Bandarupalli</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[.NET Framework 4]]></category>
		<category><![CDATA[.NET Framework 4.0]]></category>

		<guid isPermaLink="false">http://www.techbubbles.com/net-framework/guidelines-for-developing-class-libraries-in-net/</guid>
		<description><![CDATA[



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
  

Pascal Casing – The first letter in the identifier and first letter of subsequent&#160; word [...]]]></description>
		<wfw:commentRss>http://www.techbubbles.com/net-framework/guidelines-for-developing-class-libraries-in-net/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>.NET Framework 4 File IO Features</title>
		<link>http://www.techbubbles.com/net-framework/net-framework-4-file-io-features/</link>
		<comments>http://www.techbubbles.com/net-framework/net-framework-4-file-io-features/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 17:17:21 +0000</pubDate>
		<dc:creator>Kalyan Bandarupalli</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[.NET Framework 4]]></category>
		<category><![CDATA[.NET Framework 4.0]]></category>
		<category><![CDATA[File IO]]></category>

		<guid isPermaLink="false">http://www.techbubbles.com/net-framework/net-framework-4-file-io-features/</guid>
		<description><![CDATA[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”);


The issue is it must read all lines and allocate an array to return. For small [...]]]></description>
		<wfw:commentRss>http://www.techbubbles.com/net-framework/net-framework-4-file-io-features/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>.NET Framework 4 SortedSet</title>
		<link>http://www.techbubbles.com/net-framework/net-framework-4-sortedset/</link>
		<comments>http://www.techbubbles.com/net-framework/net-framework-4-sortedset/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 10:18:38 +0000</pubDate>
		<dc:creator>Kalyan</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[.NET Framework 4]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.techbubbles.com/?p=834</guid>
		<description><![CDATA[You can get the overview on what&#8217;s new in .NET FW BCL by reading my post .NET Framework 4 BCL. This post explains about one of the feature SortedSet. .NET Framework 4 adds a new collection to System.Collections.Generic, named&#160; Sorted Set&#60;T&#62;.&#160; It is like HashSet&#60;T&#62;&#160; collection of unique elements, but SortedSet&#60;T&#62; keeps the elements in [...]]]></description>
		<wfw:commentRss>http://www.techbubbles.com/net-framework/net-framework-4-sortedset/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.NET Framework 4 BCL</title>
		<link>http://www.techbubbles.com/net-framework/net-framework-4-bcl/</link>
		<comments>http://www.techbubbles.com/net-framework/net-framework-4-bcl/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 19:19:07 +0000</pubDate>
		<dc:creator>Kalyan Bandarupalli</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[.NET Framework 4.0]]></category>
		<category><![CDATA[BCL]]></category>

		<guid isPermaLink="false">http://www.techbubbles.com/net-framework/net-framework-4-bcl/</guid>
		<description><![CDATA[All .NET developers who uses the BaseClassLibraries can read this post to know what’s New in the .NET FW 4 BCL.&#160; Its not the scope of this post to cover all the features but you can read them on BCL team blog at blogs.msdn.com/bclteam.
The following are the features that you can explore in BCL

Code Contracts
Parallel [...]]]></description>
		<wfw:commentRss>http://www.techbubbles.com/net-framework/net-framework-4-bcl/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Documenting C# code with XML Comments</title>
		<link>http://www.techbubbles.com/c/documenting-c-code-with-xml-comments/</link>
		<comments>http://www.techbubbles.com/c/documenting-c-code-with-xml-comments/#comments</comments>
		<pubDate>Tue, 26 May 2009 22:56:13 +0000</pubDate>
		<dc:creator>Kalyan Bandarupalli</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[XML comments]]></category>

		<guid isPermaLink="false">http://www.techbubbles.com/c/documenting-c-code-with-xml-comments/</guid>
		<description><![CDATA[This article explains an easy and effective way of documenting your C# code. XML comments are the solution for generating a clean documentation for your code. Visual Studio environment allows you to generate a documentation file for your project. It helps your teammates and other people who using your code.
This post will explain how to [...]]]></description>
		<wfw:commentRss>http://www.techbubbles.com/c/documenting-c-code-with-xml-comments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GAC in .NET Framework</title>
		<link>http://www.techbubbles.com/net-framework/gac-in-net-framework/</link>
		<comments>http://www.techbubbles.com/net-framework/gac-in-net-framework/#comments</comments>
		<pubDate>Tue, 26 May 2009 22:43:00 +0000</pubDate>
		<dc:creator>Kalyan Bandarupalli</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[GAC]]></category>

		<guid isPermaLink="false">http://www.techbubbles.com/net-framework/gac-in-net-framework/</guid>
		<description><![CDATA[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? [...]]]></description>
		<wfw:commentRss>http://www.techbubbles.com/net-framework/gac-in-net-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Assembly binding in .NET Framework</title>
		<link>http://www.techbubbles.com/net-framework/assembly-binding-in-net-framework/</link>
		<comments>http://www.techbubbles.com/net-framework/assembly-binding-in-net-framework/#comments</comments>
		<pubDate>Mon, 25 May 2009 21:09:26 +0000</pubDate>
		<dc:creator>Kalyan Bandarupalli</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[Assembly Binding]]></category>

		<guid isPermaLink="false">http://www.techbubbles.com/net-framework/assembly-binding-in-net-framework/</guid>
		<description><![CDATA[The CLR is responsible for locating and binding the assemblies in the code. In Order to work assembly binding efficiently you need to follow some best practices.
Assembly Naming&#160;
Always use fully specified assembly names. An assembly name is a name given to unique identity. Two assemblies representing the same identity can have the same name with [...]]]></description>
		<wfw:commentRss>http://www.techbubbles.com/net-framework/assembly-binding-in-net-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Studio 2010 Beta 1 and .NET FW 4.0 Beta 1 Released!</title>
		<link>http://www.techbubbles.com/aspnet/visual-studio-2010-beta-1-and-net-fw-40-beta-1-released/</link>
		<comments>http://www.techbubbles.com/aspnet/visual-studio-2010-beta-1-and-net-fw-40-beta-1-released/#comments</comments>
		<pubDate>Wed, 20 May 2009 20:10:27 +0000</pubDate>
		<dc:creator>Kalyan Bandarupalli</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>

		<guid isPermaLink="false">http://www.techbubbles.com/aspnet/visual-studio-2010-beta-1-and-net-fw-40-beta-1-released/</guid>
		<description><![CDATA[  
&#160;
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&#160; 2010 can be found here


Next posts I [...]]]></description>
		<wfw:commentRss>http://www.techbubbles.com/aspnet/visual-studio-2010-beta-1-and-net-fw-40-beta-1-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Studio 2008 SP1 Features</title>
		<link>http://www.techbubbles.com/net-framework/visual-studio-2008-sp1-features/</link>
		<comments>http://www.techbubbles.com/net-framework/visual-studio-2008-sp1-features/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 12:28:30 +0000</pubDate>
		<dc:creator>Kalyan Bandarupalli</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[Visual Studio 2008]]></category>

		<guid isPermaLink="false">http://www.techbubbles.com/net-framework/visual-studio-2008-sp1-features/</guid>
		<description><![CDATA[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 [...]]]></description>
		<wfw:commentRss>http://www.techbubbles.com/net-framework/visual-studio-2008-sp1-features/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WCF Sample in Visual studio 2008</title>
		<link>http://www.techbubbles.com/net-framework/wcf-sample-in-visual-studio-2008/</link>
		<comments>http://www.techbubbles.com/net-framework/wcf-sample-in-visual-studio-2008/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 13:05:53 +0000</pubDate>
		<dc:creator>Kalyan Bandarupalli</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">http://www.techbubbles.com/net-framework/wcf-sample-in-visual-studio-2008/</guid>
		<description><![CDATA[Introduction
This post explains the procedure to develop the sample WCF Service and WCF Client&#160; in Visual studio 2008. Get an overview on WCF and WCF Terms.

1. Start open&#160; Visual studio 2008, Select new project option from file menu
 
2. Select the WCF ServiceApplication template from the project templates.
3. WCF Service describes the operations that perform [...]]]></description>
		<wfw:commentRss>http://www.techbubbles.com/net-framework/wcf-sample-in-visual-studio-2008/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

