<?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/tag/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>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>Creating Custom Activities in Windows Workflow Foundation</title>
		<link>http://www.techbubbles.com/workflowfoundation/creating-custom-activities-in-windows-workflow-foundation/</link>
		<comments>http://www.techbubbles.com/workflowfoundation/creating-custom-activities-in-windows-workflow-foundation/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 20:03:15 +0000</pubDate>
		<dc:creator>Kalyan Bandarupalli</dc:creator>
				<category><![CDATA[WorkflowFoundation]]></category>
		<category><![CDATA[.NET Framework]]></category>

		<guid isPermaLink="false">http://www.techbubbles.com/workflowfoundation/creating-custom-activities-in-windows-workflow-foundation/</guid>
		<description><![CDATA[Introduction
Activities are basic units in workflow execution. Activities are two types basic activities and composite activities. Basic activities are steps in the workflow and composite activities&#160; can contain other activities.
Base activities are comes with Workflow Foundation and these can be used by dragging it from visual studio toolbox. We can also create custom activities that [...]]]></description>
		<wfw:commentRss>http://www.techbubbles.com/workflowfoundation/creating-custom-activities-in-windows-workflow-foundation/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>.NET Framework Features</title>
		<link>http://www.techbubbles.com/net-framework/net-framework-features-comparision/</link>
		<comments>http://www.techbubbles.com/net-framework/net-framework-features-comparision/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 19:33:03 +0000</pubDate>
		<dc:creator>Kalyan Bandarupalli</dc:creator>
				<category><![CDATA[.NET Framework]]></category>

		<guid isPermaLink="false">http://www.techbubbles.com/?p=8</guid>
		<description><![CDATA[.NET Framework 1.1/2.0/3.0/3.5 main features comparision
1.1
Side-by-Side Execution
ASP.NET Mobile Controls
IPv6 Support
2.0
64-Bit Platform Support
Click-Once Deployment
Strongly-Typed Application Settings

3.0
Windows Workflow Foundation
Windows Presentation Foundation
Windows Communication Foundation
Windows Card spaced
3.5
Microsoft AJAX Library
Add-in and Extensibility
LINQ
Windows Form support for ASP.NET Membership
Handset Collection
Related Posts:

Guidelines for Developing Class Libraries in .NET
.NET Framework 4 File IO Features
.NET Framework 4 SortedSet
.NET Framework 4 BCL
GAC in .NET Framework

]]></description>
		<wfw:commentRss>http://www.techbubbles.com/net-framework/net-framework-features-comparision/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

