<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Priyang Patel's Weblog</title>
	<atom:link href="http://priyangpatel.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://priyangpatel.wordpress.com</link>
	<description>Resources for Visual Studio 2008 fans</description>
	<lastBuildDate>Thu, 10 Sep 2009 11:35:36 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='priyangpatel.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/867b17469a9d14ef3fef10c01ec3a19d?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Priyang Patel's Weblog</title>
		<link>http://priyangpatel.wordpress.com</link>
	</image>
			<item>
		<title>RESTful Services With ASP.NET MVC</title>
		<link>http://priyangpatel.wordpress.com/2009/09/10/restful-services-with-asp-net-mvc/</link>
		<comments>http://priyangpatel.wordpress.com/2009/09/10/restful-services-with-asp-net-mvc/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 11:35:36 +0000</pubDate>
		<dc:creator>priyangpatel</dc:creator>
				<category><![CDATA[MVC]]></category>

		<guid isPermaLink="false">http://priyangpatel.wordpress.com/?p=60</guid>
		<description><![CDATA[I have found a very nice article of create RESTful Services With ASP.NET MVC.
http://msdn.microsoft.com/en-us/magazine/dd943053.aspx
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyangpatel.wordpress.com&blog=3147532&post=60&subd=priyangpatel&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I have found a very nice article of create RESTful Services With ASP.NET MVC.</p>
<p><a href="http://msdn.microsoft.com/en-us/magazine/dd943053.aspx">http://msdn.microsoft.com/en-us/magazine/dd943053.aspx</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/priyangpatel.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/priyangpatel.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/priyangpatel.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/priyangpatel.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/priyangpatel.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/priyangpatel.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/priyangpatel.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/priyangpatel.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/priyangpatel.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/priyangpatel.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyangpatel.wordpress.com&blog=3147532&post=60&subd=priyangpatel&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://priyangpatel.wordpress.com/2009/09/10/restful-services-with-asp-net-mvc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d9b86e1a63ee9383321980397d66da6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Priyang</media:title>
		</media:content>
	</item>
		<item>
		<title>?? Operator (null-coalescing operator)</title>
		<link>http://priyangpatel.wordpress.com/2009/09/10/operator-null-coalescing-operator/</link>
		<comments>http://priyangpatel.wordpress.com/2009/09/10/operator-null-coalescing-operator/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 06:16:10 +0000</pubDate>
		<dc:creator>priyangpatel</dc:creator>
				<category><![CDATA[C# 3.0]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://priyangpatel.wordpress.com/?p=56</guid>
		<description><![CDATA[?? is used to define a default value for a nullable value types as well as reference types. It returns the left-hand operand if it is not null; otherwise it returns the right operand.
A nullable type can contain a value, or it can be undefined. The ?? operator defines the default value to be returned when a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyangpatel.wordpress.com&blog=3147532&post=56&subd=priyangpatel&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>?? is used to define a default value for a nullable value types as well as reference types. It returns the left-hand operand if it is not null; otherwise it returns the right operand.</p>
<p>A nullable type can contain a value, or it can be undefined. The ?? operator defines the default value to be returned when a nullable type is assigned to a non-nullable type. If you try to assign a nullable value type to a non-nullable value type without using the ?? operator, you will generate a compile-time error. If you use a cast, and the nullable value type is currently undefined, an InvalidOperationException exception will be thrown.</p>
<div id="attachment_57" class="wp-caption alignnone" style="width: 485px"><a href="http://priyangpatel.files.wordpress.com/2009/09/tempblog.jpg"><img class="size-full wp-image-57" title="Example" src="http://priyangpatel.files.wordpress.com/2009/09/tempblog.jpg?w=475&#038;h=147" alt="Example" width="475" height="147" /></a><p class="wp-caption-text">Example</p></div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/priyangpatel.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/priyangpatel.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/priyangpatel.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/priyangpatel.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/priyangpatel.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/priyangpatel.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/priyangpatel.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/priyangpatel.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/priyangpatel.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/priyangpatel.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyangpatel.wordpress.com&blog=3147532&post=56&subd=priyangpatel&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://priyangpatel.wordpress.com/2009/09/10/operator-null-coalescing-operator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d9b86e1a63ee9383321980397d66da6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Priyang</media:title>
		</media:content>

		<media:content url="http://priyangpatel.files.wordpress.com/2009/09/tempblog.jpg" medium="image">
			<media:title type="html">Example</media:title>
		</media:content>
	</item>
		<item>
		<title>SSRS 2005 limitations :</title>
		<link>http://priyangpatel.wordpress.com/2009/09/07/ssrs-2005-limitations/</link>
		<comments>http://priyangpatel.wordpress.com/2009/09/07/ssrs-2005-limitations/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 10:08:44 +0000</pubDate>
		<dc:creator>priyangpatel</dc:creator>
				<category><![CDATA[SSRS (Sql Server Reporting Services)]]></category>
		<category><![CDATA[SSRS]]></category>

		<guid isPermaLink="false">http://priyangpatel.wordpress.com/?p=52</guid>
		<description><![CDATA[I am working with SSRS (Sql Server Reporting Services) 2005 since last 8 months and i came across many limitations which should not be there with SSRS . SSRS is still getting matured so please go through following list before choosing SSRS 2005 for reporting in your system.
Does not support dynamic width for columns:
SSRS doesn’t [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyangpatel.wordpress.com&blog=3147532&post=52&subd=priyangpatel&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I am working with SSRS (Sql Server Reporting Services) 2005 since last 8 months and i came across many limitations which should not be there with SSRS . SSRS is still getting matured so please go through following list before choosing SSRS 2005 for reporting in your system.</p>
<p><span style="text-decoration:underline;">Does not support dynamic width for columns:</span></p>
<p>SSRS doesn’t support dynamic width for columns , also the main problem I found is if you will disable one column based on condition then remaining columns width won’t get adjusted to use hidden columns space. And its very frustrating.</p>
<p><span style="text-decoration:underline;">Doesn’t support HTML rendering !!!!!!!!!:</span></p>
<p>Yes, Its correct that SSRS 2005 doesn’t support HTML rendering of sent data. It is really surprising for me.</p>
<p><span style="text-decoration:underline;">CanGrow property : </span></p>
<p>SSRS controls have cangrow property, if its true then controls will grow based on its contents width. But its can grow in vertical direction but not in horizontal&#8230;..</p>
<p>If this property is set to false then it will auto trim data based on controls width. and then if you want to show “&#8230;” to show there are some more  data then you are in real trouble.</p>
<p>There are some more limitations are mentioned at here.</p>
<p><a href="http://social.msdn.microsoft.com/forums/en-US/sqlreportingservices/thread/0a80874f-e779-49e1-9fbb-7b7d730cd836">http://social.msdn.microsoft.com/forums/en-US/sqlreportingservices/thread/0a80874f-e779-49e1-9fbb-7b7d730cd836</a></p>
<p>Hope all this problems are solved with SSRS 2008&#8230;.:)</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/priyangpatel.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/priyangpatel.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/priyangpatel.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/priyangpatel.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/priyangpatel.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/priyangpatel.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/priyangpatel.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/priyangpatel.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/priyangpatel.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/priyangpatel.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyangpatel.wordpress.com&blog=3147532&post=52&subd=priyangpatel&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://priyangpatel.wordpress.com/2009/09/07/ssrs-2005-limitations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d9b86e1a63ee9383321980397d66da6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Priyang</media:title>
		</media:content>
	</item>
		<item>
		<title>Some nice MVC videos</title>
		<link>http://priyangpatel.wordpress.com/2009/09/03/some-nice-mvc-videos/</link>
		<comments>http://priyangpatel.wordpress.com/2009/09/03/some-nice-mvc-videos/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 10:32:52 +0000</pubDate>
		<dc:creator>priyangpatel</dc:creator>
				<category><![CDATA[MVC]]></category>

		<guid isPermaLink="false">http://priyangpatel.wordpress.com/2009/09/03/some-nice-mvc-videos/</guid>
		<description><![CDATA[Some really nice videos of asp.net MVC presented by Phil Haack.
Choosing between ASP.NET Web Forms and MVC
 http://videos.visitmix.com/MIX09/T23F
ASP.NET MVC: America&#8217;s Next Top Model View Controller Framework
 http://videos.visitmix.com/MIX09/T50F
Microsoft ASP.NET Model View Controller (MVC): Ninja on Fire Black Belt Tips
 http://videos.visitmix.com/MIX09/T44F
Enjoy..
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyangpatel.wordpress.com&blog=3147532&post=49&subd=priyangpatel&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Some really nice videos of asp.net MVC presented by Phil Haack.</p>
<p>Choosing between ASP.NET Web Forms and MVC</p>
<p> <a href="http://videos.visitmix.com/MIX09/T23F">http://videos.visitmix.com/MIX09/T23F</a><br />
ASP.NET MVC: America&#8217;s Next Top Model View Controller Framework</p>
<p> <a href="http://videos.visitmix.com/MIX09/T50F">http://videos.visitmix.com/MIX09/T50F</a><br />
Microsoft ASP.NET Model View Controller (MVC): Ninja on Fire Black Belt Tips</p>
<p> <a href="http://videos.visitmix.com/MIX09/T44F">http://videos.visitmix.com/MIX09/T44F</a></p>
<p>Enjoy..</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/priyangpatel.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/priyangpatel.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/priyangpatel.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/priyangpatel.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/priyangpatel.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/priyangpatel.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/priyangpatel.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/priyangpatel.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/priyangpatel.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/priyangpatel.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyangpatel.wordpress.com&blog=3147532&post=49&subd=priyangpatel&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://priyangpatel.wordpress.com/2009/09/03/some-nice-mvc-videos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d9b86e1a63ee9383321980397d66da6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Priyang</media:title>
		</media:content>
	</item>
		<item>
		<title>Something about MVC (Model View Controller)!!!</title>
		<link>http://priyangpatel.wordpress.com/2009/03/25/something-about-mvc-model-view-controller/</link>
		<comments>http://priyangpatel.wordpress.com/2009/03/25/something-about-mvc-model-view-controller/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 17:02:25 +0000</pubDate>
		<dc:creator>priyangpatel</dc:creator>
				<category><![CDATA[MVC]]></category>

		<guid isPermaLink="false">http://priyangpatel.wordpress.com/?p=43</guid>
		<description><![CDATA[ 
I heard so much about MVC and want to share some basic things about MVC.
Basically MVC is a design pattern defined many years back  and ASP.NET MVC Framework is the framework to implement MVC pattern.
As Per wordPress the defination of MVC Pattern is
&#8220;Model–View–Controller (MVC) is an architectural pattern used in software engineering. Successful use of the pattern isolates business logic fromuser [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyangpatel.wordpress.com&blog=3147532&post=43&subd=priyangpatel&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p> </p>
<p>I heard so much about MVC and want to share some basic things about MVC.</p>
<p>Basically MVC is a design pattern defined many years back  and ASP.NET MVC Framework is the framework to implement MVC pattern.</p>
<p>As Per wordPress the defination of MVC Pattern is</p>
<p>&#8220;<strong>Model–View–Controller</strong> (MVC) is an <a title="Architectural pattern (computer science)" href="http://en.wikipedia.org/wiki/Architectural_pattern_(computer_science)">architectural pattern</a> used in <a title="Software engineering" href="http://en.wikipedia.org/wiki/Software_engineering">software engineering</a>. Successful use of the pattern isolates <a title="Business logic" href="http://en.wikipedia.org/wiki/Business_logic">business logic</a> from<a title="User interface" href="http://en.wikipedia.org/wiki/User_interface">user interface</a> considerations, resulting in an application where it is easier to modify either the visual appearance of the application or the underlying business rules without affecting the other. In MVC, the <em>model</em> represents the information (the data) of the application; the <em>view</em> corresponds to elements of the user interface such as text, checkbox items, and so forth; and the <em>controller</em> manages the communication of data and the business rules used to manipulate the data to and from the model.&#8221;</p>
<p>Now lets understand MVC Framework.</p>
<p> </p>
<p>MVC is a framework methodology that divides an application&#8217;s implementation into three component roles: models, views, and controllers.</p>
<ul>
<li>&#8220;Models&#8221; in a MVC based application are the components of the application that are responsible for maintaining state.  Often this state is persisted inside a database (for example: we might have a Product class that is used to represent order data from the Products table inside SQL).</li>
</ul>
<ul>
<li>&#8220;Views&#8221; in a MVC based application are the components responsible for displaying the application&#8217;s user interface.  Typically this UI is created off of the model data (for example: we might create an Product &#8220;Edit&#8221; view that surfaces textboxes, dropdowns and checkboxes based on the current state of a Product object).</li>
</ul>
<ul>
<li>&#8220;Controllers&#8221; in a MVC based application are the components responsible for handling end user interaction, manipulating the model, and ultimately choosing a view to render to display UI.  In a MVC application the view is only about displaying information &#8211; it is the controller that handles and responds to user input and interaction.</li>
</ul>
<p>One of the benefits of using a MVC methodology is that it helps enforce a clean separation of concerns between the models, views and controllers within an application.  Maintaining a clean separation of concerns makes the testing of applications much easier, since the contract between different application components are more clearly defined and articulated.</p>
<p>The MVC pattern can also help enable red/green <a href="http://en.wikipedia.org/wiki/Test-driven_development" target="_blank">test driven development</a> (TDD) &#8211; where you implement automated unit tests, which define and verify the requirements of new code, first before you actually write the code itself.</p>
<p> </p>
<p> </p>
<div id="attachment_44" class="wp-caption alignleft" style="width: 333px"><a href="http://priyangpatel.files.wordpress.com/2009/03/mvc.png"><img class="size-full wp-image-44" title="mvc" src="http://priyangpatel.files.wordpress.com/2009/03/mvc.png?w=323&#038;h=310" alt="MVC" width="323" height="310" /></a><p class="wp-caption-text">MVC</p></div>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p>Some benefits of MVC are :</p>
<ul>
<li>Clear separation of concerns</li>
<li>Testability &#8211; support for Test-Driven Development</li>
<li>Fine-grained control over HTML and JavaScript</li>
<li>Intuitive URLs</li>
</ul>
<p>I will try to post more and more things about MVC.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/priyangpatel.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/priyangpatel.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/priyangpatel.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/priyangpatel.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/priyangpatel.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/priyangpatel.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/priyangpatel.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/priyangpatel.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/priyangpatel.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/priyangpatel.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyangpatel.wordpress.com&blog=3147532&post=43&subd=priyangpatel&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://priyangpatel.wordpress.com/2009/03/25/something-about-mvc-model-view-controller/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d9b86e1a63ee9383321980397d66da6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Priyang</media:title>
		</media:content>

		<media:content url="http://priyangpatel.files.wordpress.com/2009/03/mvc.png" medium="image">
			<media:title type="html">mvc</media:title>
		</media:content>
	</item>
		<item>
		<title>Increase your productivity using visual studio 2008</title>
		<link>http://priyangpatel.wordpress.com/2008/06/03/increase-your-productivity-using-visual-studio-2008/</link>
		<comments>http://priyangpatel.wordpress.com/2008/06/03/increase-your-productivity-using-visual-studio-2008/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 09:43:00 +0000</pubDate>
		<dc:creator>priyangpatel</dc:creator>
				<category><![CDATA[Visual Studio Tips and Tricks]]></category>

		<guid isPermaLink="false">http://priyangpatel.wordpress.com/2008/06/03/increase-your-productivity-using-visual-studio-2008/</guid>
		<description><![CDATA[Basic Building Commands:
It&#8217;s an obvious and trivial thing, but the timesaving  will add up, especially for those actions you perform tens or hundreds of times  a day such as building and debugging.  Here are some basic bindings every Visual  Studio developer should know: 

Build: CTRL +  SHIFT + B  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyangpatel.wordpress.com&blog=3147532&post=42&subd=priyangpatel&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><span style="font-weight:bold;font-family:arial;font-size:100%;">Basic Building Commands:<br /></span>
<p style="font-family:arial;"><span style="font-size:100%;">It&#8217;s an obvious and trivial thing, but the timesaving  will add up, especially for those actions you perform tens or hundreds of times  a day such as building and debugging.  Here are some basic bindings every Visual  Studio developer should know: </span></p>
<ul style="font-family:arial;">
<li><span style="font-size:100%;">Build: <strong>CTRL</strong> +  <strong>SHIFT</strong> + <strong>B</strong></span>  </li>
<li><span style="font-size:100%;">Word completion: <strong>CTRL</strong> + <strong>SPACE</strong></span>  </li>
<li><span style="font-size:100%;">Start with debugging: <strong>F5</strong></span>  </li>
<li><span style="font-size:100%;">Start without debugging: <strong>CTRL</strong> + <strong>F5</strong></span>  </li>
</ul>
<p style="font-family:arial;"><span style="font-size:100%;"><em></em>Download the <a href="http://www.microsoft.com/downloads/details.aspx?familyid=E5F902A8-5BB5-4CC6-907E-472809749973&amp;displaylang=en" target="_blank">Visual  C# 2008 Keybinding Reference Poster</a>.</span></p>
<p><span style="font-weight:bold;font-family:arial;font-size:100%;"> Use GhostDoc to create XML Comments</p>
<p></span><span style="font-family:arial;font-size:100%;">Instead of typing XML comments by hand, let a tool do the work for you. Although  macros and snippets are reasonably effective for this, I would recommend </span><span style="font-family:times new roman;font-size:100%;"><a href="http://www.roland-weigelt.de/ghostdoc/" target="_blank">Ghost Doc</a></span><span style="font-family:arial;font-size:100%;"> over any other  solution. This </span><span style="font-family:times new roman;font-size:100%;"><em>free</em></span><span style="font-family:arial;font-size:100%;"> add-in uses customizable  templates to generate consistent, English-readable documentation based on the  current context.  To use it, right-click (or use CTRL + SHIFT + D) to document  the current element.  For example:</span>
<p style="font-family:arial;"><span style="font-size:100%;"><br /></span></p>
<p style="font-family:arial;"><span style="font-size:100%;"><a href="http://bp0.blogger.com/_JBgTe5i3S6g/SEUTtcE4YiI/AAAAAAAAAP4/SneTj_KD89M/s1600-h/image_thumb.png"><img style="display:block;text-align:center;cursor:pointer;margin:0 auto 10px;" src="http://bp0.blogger.com/_JBgTe5i3S6g/SEUTtcE4YiI/AAAAAAAAAP4/SneTj_KD89M/s400/image_thumb.png" alt="" border="0" /></a></span></p>
<p style="font-family:arial;"><span style="font-size:100%;">This generates the following documentation:</span></p>
<p><span style="font-family:times new roman;font-size:100%;"><a href="http://bp2.blogger.com/_JBgTe5i3S6g/SEUUE8E4YjI/AAAAAAAAAQA/DpdrKQnNldc/s1600-h/image_thumb_1.png"><img style="display:block;text-align:center;cursor:pointer;margin:0 auto 10px;" src="http://bp2.blogger.com/_JBgTe5i3S6g/SEUUE8E4YjI/AAAAAAAAAQA/DpdrKQnNldc/s400/image_thumb_1.png" alt="" border="0" /></a></span><span style="font-size:100%;"><span style="font-weight:bold;">Auto-Implement Properties</span> </span>
<p style="font-family:arial;"><span style="font-size:100%;">Take advantage of a new feature of C#: <a href="http://msdn2.microsoft.com/en-us/library/bb384054.aspx" target="_blank">auto-implemented properties</a>. Rather than creating a private backing field for your properties, let the compiler do it for you. The following demonstrates the syntax: </span></p>
<p><span style="font-family:times new roman;font-size:100%;"><a href="http://bp3.blogger.com/_JBgTe5i3S6g/SEUVLME4YkI/AAAAAAAAAQI/P0imhlpnmyQ/s1600-h/image_thumb_2.png"><img style="display:block;text-align:center;cursor:pointer;margin:0 auto 10px;" src="http://bp3.blogger.com/_JBgTe5i3S6g/SEUVLME4YkI/AAAAAAAAAQI/P0imhlpnmyQ/s400/image_thumb_2.png" alt="" border="0" /></a></span>
<p style="font-family:arial;"><span style="font-size:100%;">Use the code snippet to make this even faster.  Type  <strong>prop</strong> (the shortcut for an auto-implemented  property) followed by <strong>TAB</strong> <strong>TAB</strong>.  Then fill in the data type and property  name:</span></p>
<p style="font-family:arial;"><span style="font-size:100%;"><a href="http://bp3.blogger.com/_JBgTe5i3S6g/SEUVLME4YlI/AAAAAAAAAQQ/CSYMy3EPoMg/s1600-h/image_thumb_14.png"><img style="display:block;text-align:center;cursor:pointer;margin:0 auto 10px;" src="http://bp3.blogger.com/_JBgTe5i3S6g/SEUVLME4YlI/AAAAAAAAAQQ/CSYMy3EPoMg/s400/image_thumb_14.png" alt="" border="0" /></a></span></p>
<p><span style="font-weight:bold;font-family:arial;font-size:100%;">Refactor<br /></span><span style="font-size:100%;">The refactor feature in Visual Studio is indispensable  for many tasks, especially renaming, but one productivity feature I particularly  like is <em>Encapsulate Field</em>. If you are unable to use  an auto-implemented property, declare a private field and let Visual Studio  generate the Property for you.  To use this feature, right-click on the field  and select <em>Refactor</em> &gt; <em>Encapsulate Field&#8230;</em></span>
</p>
<p style="font-family:arial;"><span style="font-size:100%;"><a href="http://bp1.blogger.com/_JBgTe5i3S6g/SEUWxsE4YmI/AAAAAAAAAQY/Wd0sdE1dT5o/s1600-h/image_thumb_3.png"><img style="display:block;text-align:center;cursor:pointer;margin:0 auto 10px;" src="http://bp1.blogger.com/_JBgTe5i3S6g/SEUWxsE4YmI/AAAAAAAAAQY/Wd0sdE1dT5o/s400/image_thumb_3.png" alt="" border="0" /></a></span></p>
<p style="font-family:arial;"><span style="font-size:100%;"> The property is created for you: </span></p>
<p style="font-family:arial;"><span style="font-size:100%;"><a href="http://bp1.blogger.com/_JBgTe5i3S6g/SEUWxsE4YnI/AAAAAAAAAQg/smFKIrhVjxk/s1600-h/image_thumb_4.png"><img style="display:block;text-align:center;cursor:pointer;margin:0 auto 10px;" src="http://bp1.blogger.com/_JBgTe5i3S6g/SEUWxsE4YnI/AAAAAAAAAQg/smFKIrhVjxk/s400/image_thumb_4.png" alt="" border="0" /></a></span></p>
<p><span style="font-size:100%;"><span style="font-weight:bold;">Add Commands to Visual Studio 2008</span> </span>
<p style="font-family:arial;"><span style="font-size:100%;">Install the <a href="http://code.msdn.microsoft.com/PowerCommands" target="_blank">PowerCommands for Visual  Studio 2008</a> to add several productivity commands such as: </span></p>
<ul style="font-family:arial;">
<li><span style="font-size:100%;">Close all documents  </span></li>
<li><span style="font-size:100%;">Copy and paste a class (automatically renames)  </span></li>
<li><span style="font-size:100%;">Remove and sort using statements project-wide  </span></li>
<li><span style="font-size:100%;">Copy and paste references (including a project  reference) </span></li>
</ul>
<p style="font-family:arial;"><span style="font-size:100%;">Install the <a href="http://msdn2.microsoft.com/en-us/tfs2008/bb980963.aspx" target="_blank">Team  Foundation Server Power Tools</a> to add several TFS productivity commands such  as:</span></p>
<ul style="font-family:arial;">
<li><span style="font-size:100%;">Find in source control  </span></li>
<li><span style="font-size:100%;">Open source folder in Windows Explorer  </span></li>
<li><span style="font-size:100%;">Work item templates (can be used to set values on  multiple work items at once)</span></li>
</ul>
<p style="font-family:arial;"><span style="font-size:100%;">Add your own productivity commands.  For example, to add  <a href="http://www.aisto.com/roeder/dotnet/" target="_blank">Reflector</a> so it automatically  opens on the current project.</span></p>
<ul style="font-family:arial;">
<li><span style="font-size:100%;">Select Tools &gt; External Tools  </span></li>
<li><span style="font-size:100%;">Click Add  </span></li>
<li><span style="font-size:100%;">Name it Reflector and browse to the executable  </span></li>
<li><span style="font-size:100%;">Enter $(TargetPath) for the Arguments</span></li>
</ul>
<p><span style="font-family:times new roman;font-size:100%;"><br /></span><span style="font-weight:bold;font-size:100%;">Speed up Compilation with Project Configuration</span>
<p style="font-family:arial;"><span style="font-size:100%;">You may build tens of times during a programming session,  so don&#8217;t enable anything that isn&#8217;t absolute necessary such as code analysis and  XML documentation.  Develop in Debug configuration, and switch to Release  configuration just before check-in to run code analysis and generate XML  documentation. In a large solution I recently worked on, this shaved a minute  off compilation time.</span></p>
<p style="font-family:arial;"><span style="font-size:100%;"><a href="http://bp1.blogger.com/_JBgTe5i3S6g/SEUXZsE4YoI/AAAAAAAAAQo/A91ZV4wJ30g/s1600-h/image_thumb_5.png"><img style="display:block;text-align:center;cursor:pointer;margin:0 auto 10px;" src="http://bp1.blogger.com/_JBgTe5i3S6g/SEUXZsE4YoI/AAAAAAAAAQo/A91ZV4wJ30g/s400/image_thumb_5.png" alt="" border="0" /></a></span></p>
<p style="font-family:arial;"><span style="font-size:100%;">The following shows code analysis <em>disabled</em> in Debug configuration:</span></p>
<p style="font-family:arial;"><span style="font-size:100%;"><a href="http://bp2.blogger.com/_JBgTe5i3S6g/SEUXZ8E4YpI/AAAAAAAAAQw/D_sDTM_Io_k/s1600-h/image_thumb_6.png"><img style="display:block;text-align:center;cursor:pointer;margin:0 auto 10px;" src="http://bp2.blogger.com/_JBgTe5i3S6g/SEUXZ8E4YpI/AAAAAAAAAQw/D_sDTM_Io_k/s400/image_thumb_6.png" alt="" border="0" /></a></span></p>
<p><span style="font-weight:bold;font-family:arial;font-size:100%;">Let Visual Studio Generate Unit Test Code</span>
<p style="font-family:arial;"><span style="font-size:100%;">Although it can&#8217;t fully automate unit testing yet (check  out <a href="http://research.microsoft.com/projects/Pex/" target="_blank">Pex</a>), Visual Studio  does a good job of generating <a href="http://en.wikipedia.org/wiki/Test-driven_development" target="_blank">positive unit  test</a> code to give you a jump start.  To use this feature, right-click on an  element you would like to test and select <em>Create Unit  Tests&#8230;<br /></em></span></p>
<p style="font-family:arial;"><span style="font-size:100%;"><br /><em></em></span></p>
<p style="font-family:arial;"><span style="font-size:100%;"><a href="http://bp1.blogger.com/_JBgTe5i3S6g/SEUc-sE4YqI/AAAAAAAAAQ4/DYRoLhfhy9Q/s1600-h/image_thumb_7.png"><img style="display:block;text-align:center;cursor:pointer;margin:0 auto 10px;" src="http://bp1.blogger.com/_JBgTe5i3S6g/SEUc-sE4YqI/AAAAAAAAAQ4/DYRoLhfhy9Q/s400/image_thumb_7.png" alt="" border="0" /></a></span></p>
<p style="font-family:arial;"><span style="font-size:100%;">Visual Studio generates the following test method:</span></p>
<p style="font-family:arial;"><span style="font-size:100%;"><a href="http://bp1.blogger.com/_JBgTe5i3S6g/SEUc-sE4YrI/AAAAAAAAARA/Lw1muEfg_VA/s1600-h/image_thumb_8.png"><img style="display:block;text-align:center;cursor:pointer;margin:0 auto 10px;" src="http://bp1.blogger.com/_JBgTe5i3S6g/SEUc-sE4YrI/AAAAAAAAARA/Lw1muEfg_VA/s400/image_thumb_8.png" alt="" border="0" /></a></span></p>
<p style="font-family:arial;">
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/priyangpatel.wordpress.com/42/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/priyangpatel.wordpress.com/42/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/priyangpatel.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/priyangpatel.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/priyangpatel.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/priyangpatel.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/priyangpatel.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/priyangpatel.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/priyangpatel.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/priyangpatel.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/priyangpatel.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/priyangpatel.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyangpatel.wordpress.com&blog=3147532&post=42&subd=priyangpatel&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://priyangpatel.wordpress.com/2008/06/03/increase-your-productivity-using-visual-studio-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d9b86e1a63ee9383321980397d66da6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Priyang</media:title>
		</media:content>

		<media:content url="http://bp0.blogger.com/_JBgTe5i3S6g/SEUTtcE4YiI/AAAAAAAAAP4/SneTj_KD89M/s400/image_thumb.png" medium="image" />

		<media:content url="http://bp2.blogger.com/_JBgTe5i3S6g/SEUUE8E4YjI/AAAAAAAAAQA/DpdrKQnNldc/s400/image_thumb_1.png" medium="image" />

		<media:content url="http://bp3.blogger.com/_JBgTe5i3S6g/SEUVLME4YkI/AAAAAAAAAQI/P0imhlpnmyQ/s400/image_thumb_2.png" medium="image" />

		<media:content url="http://bp3.blogger.com/_JBgTe5i3S6g/SEUVLME4YlI/AAAAAAAAAQQ/CSYMy3EPoMg/s400/image_thumb_14.png" medium="image" />

		<media:content url="http://bp1.blogger.com/_JBgTe5i3S6g/SEUWxsE4YmI/AAAAAAAAAQY/Wd0sdE1dT5o/s400/image_thumb_3.png" medium="image" />

		<media:content url="http://bp1.blogger.com/_JBgTe5i3S6g/SEUWxsE4YnI/AAAAAAAAAQg/smFKIrhVjxk/s400/image_thumb_4.png" medium="image" />

		<media:content url="http://bp1.blogger.com/_JBgTe5i3S6g/SEUXZsE4YoI/AAAAAAAAAQo/A91ZV4wJ30g/s400/image_thumb_5.png" medium="image" />

		<media:content url="http://bp2.blogger.com/_JBgTe5i3S6g/SEUXZ8E4YpI/AAAAAAAAAQw/D_sDTM_Io_k/s400/image_thumb_6.png" medium="image" />

		<media:content url="http://bp1.blogger.com/_JBgTe5i3S6g/SEUc-sE4YqI/AAAAAAAAAQ4/DYRoLhfhy9Q/s400/image_thumb_7.png" medium="image" />

		<media:content url="http://bp1.blogger.com/_JBgTe5i3S6g/SEUc-sE4YrI/AAAAAAAAARA/Lw1muEfg_VA/s400/image_thumb_8.png" medium="image" />
	</item>
		<item>
		<title>Find files faster with Find Combo Box !!!!</title>
		<link>http://priyangpatel.wordpress.com/2008/05/30/find-files-faster-with-find-combo-box/</link>
		<comments>http://priyangpatel.wordpress.com/2008/05/30/find-files-faster-with-find-combo-box/#comments</comments>
		<pubDate>Fri, 30 May 2008 10:50:00 +0000</pubDate>
		<dc:creator>priyangpatel</dc:creator>
				<category><![CDATA[Visual Studio Tips and Tricks]]></category>

		<guid isPermaLink="false">http://priyangpatel.wordpress.com/2008/05/30/find-files-faster-with-find-combo-box/</guid>
		<description><![CDATA[This is the Find dropdown that is on the Standard Toolbar, not the Find dialog. Use the shortcut CTRL+D to activate the Find dropdown in normal mode. Use CTRL+/ to activate the Find dropdown in command mode (with &#8220;&#62;&#8221; prepended… this doesn’t work sometimes for me).
To quickly go to a file, type CTRL+D, &#62;open  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyangpatel.wordpress.com&blog=3147532&post=41&subd=priyangpatel&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is the Find dropdown that is on the Standard Toolbar, not the Find dialog. Use the shortcut <strong>CTRL+D</strong> to activate the Find <em>dropdown</em> in normal mode. Use <strong>CTRL+/</strong> to activate the Find dropdown in command mode (with &#8220;&gt;&#8221; prepended… this doesn’t work sometimes for me).</p>
<p><a href="http://bp2.blogger.com/_JBgTe5i3S6g/SD_e0cE4YgI/AAAAAAAAAPk/Oq094dxpwFA/s1600-h/VS2005-Productivity-Find-Combo.jpg"><img style="display:block;text-align:center;cursor:pointer;margin:0 auto 10px;" src="http://bp2.blogger.com/_JBgTe5i3S6g/SD_e0cE4YgI/AAAAAAAAAPk/Oq094dxpwFA/s400/VS2005-Productivity-Find-Combo.jpg" alt="" border="0" /></a><br />To quickly go to a file, type <strong>CTRL+D</strong>, &gt;<strong>open</strong>  . Intellisense works here just like in the Command Window. &#8220;<strong>of&#8221;</strong> (short for &#8220;open file&#8221;) can be used instead of <strong>open</strong>. Compare this with opening Solution Explorer, expand the correct folder/project, and visually hunt for the file you need.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/priyangpatel.wordpress.com/41/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/priyangpatel.wordpress.com/41/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/priyangpatel.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/priyangpatel.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/priyangpatel.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/priyangpatel.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/priyangpatel.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/priyangpatel.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/priyangpatel.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/priyangpatel.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/priyangpatel.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/priyangpatel.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyangpatel.wordpress.com&blog=3147532&post=41&subd=priyangpatel&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://priyangpatel.wordpress.com/2008/05/30/find-files-faster-with-find-combo-box/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d9b86e1a63ee9383321980397d66da6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Priyang</media:title>
		</media:content>

		<media:content url="http://bp2.blogger.com/_JBgTe5i3S6g/SD_e0cE4YgI/AAAAAAAAAPk/Oq094dxpwFA/s400/VS2005-Productivity-Find-Combo.jpg" medium="image" />
	</item>
		<item>
		<title>Start debugging faster by &quot;Attach to Process&quot;</title>
		<link>http://priyangpatel.wordpress.com/2008/05/30/start-debugging-faster-by-attach-to-process/</link>
		<comments>http://priyangpatel.wordpress.com/2008/05/30/start-debugging-faster-by-attach-to-process/#comments</comments>
		<pubDate>Fri, 30 May 2008 10:47:00 +0000</pubDate>
		<dc:creator>priyangpatel</dc:creator>
				<category><![CDATA[Visual Studio Tips and Tricks]]></category>

		<guid isPermaLink="false">http://priyangpatel.wordpress.com/2008/05/30/start-debugging-faster-by-attach-to-process/</guid>
		<description><![CDATA[Most ASP.NET developers use the standard F5 (Debug/Start Debugging) to start debugging from Visual Studio. However, there is a much faster way to start debugging if you already have an instance of your web application running. Just attach to it instead:

Choose Debug/Attach to Process. 
Select the &#8220;aspnet_wp.exe&#8221; process and choose Attach. 

Debugging this way is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyangpatel.wordpress.com&blog=3147532&post=40&subd=priyangpatel&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Most ASP.NET developers use the standard <strong>F5</strong> (Debug/Start Debugging) to start debugging from Visual Studio. However, there is a much faster way to start debugging if you already have an instance of your web application running. Just attach to it instead:</p>
<ul>
<li>Choose Debug/Attach to Process. </li>
<li>Select the &#8220;aspnet_wp.exe&#8221; process and choose Attach. </li>
</ul>
<p>Debugging this way is faster because you skip the often-lengthy compilation step, and you don’t have to navigate from the start page to the actual page that you want to debug.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/priyangpatel.wordpress.com/40/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/priyangpatel.wordpress.com/40/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/priyangpatel.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/priyangpatel.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/priyangpatel.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/priyangpatel.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/priyangpatel.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/priyangpatel.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/priyangpatel.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/priyangpatel.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/priyangpatel.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/priyangpatel.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyangpatel.wordpress.com&blog=3147532&post=40&subd=priyangpatel&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://priyangpatel.wordpress.com/2008/05/30/start-debugging-faster-by-attach-to-process/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d9b86e1a63ee9383321980397d66da6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Priyang</media:title>
		</media:content>
	</item>
		<item>
		<title>Enjoy Code Snippet with Visual Studio 2008 !!!!!!!</title>
		<link>http://priyangpatel.wordpress.com/2008/05/27/enjoy-code-snippet-with-visual-studio-2008/</link>
		<comments>http://priyangpatel.wordpress.com/2008/05/27/enjoy-code-snippet-with-visual-studio-2008/#comments</comments>
		<pubDate>Tue, 27 May 2008 06:43:00 +0000</pubDate>
		<dc:creator>priyangpatel</dc:creator>
				<category><![CDATA[Visual Studio Tips and Tricks]]></category>

		<guid isPermaLink="false">http://priyangpatel.wordpress.com/2008/05/27/enjoy-code-snippet-with-visual-studio-2008/</guid>
		<description><![CDATA[If you know what is  &#8220;Code Snippet&#8221; ? &#38; how to use it? with visual studio 2005.
But now if you are using Visual Studio 2008 then you won&#8217;t find it. Don&#8217;t worry it is not removed from visual studio, you can still use it.
Copy and paste or create your snippet file to following address [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyangpatel.wordpress.com&blog=3147532&post=39&subd=priyangpatel&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>If you know what is  <span style="font-weight:bold;">&#8220;Code Snippet&#8221; ? </span>&amp;<span style="font-weight:bold;"> </span>how to use it? with visual studio 2005.</p>
<p>But now if you are using Visual Studio 2008 then you won&#8217;t find it. Don&#8217;t worry it is not removed from visual studio, you can still use it.</p>
<p>Copy and paste or create your snippet file to following address of your computer:</p>
<p>    <span style="font-weight:bold;">My Documents\Visual Studio 2008\Code Snippets\Visual C#\My Code Snippets</span></p>
<p>It&#8217;s done, just go to visual studio and write down snippet name and press tab.</p>
<p>Cheers!!!!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/priyangpatel.wordpress.com/39/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/priyangpatel.wordpress.com/39/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/priyangpatel.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/priyangpatel.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/priyangpatel.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/priyangpatel.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/priyangpatel.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/priyangpatel.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/priyangpatel.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/priyangpatel.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/priyangpatel.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/priyangpatel.wordpress.com/39/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyangpatel.wordpress.com&blog=3147532&post=39&subd=priyangpatel&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://priyangpatel.wordpress.com/2008/05/27/enjoy-code-snippet-with-visual-studio-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d9b86e1a63ee9383321980397d66da6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Priyang</media:title>
		</media:content>
	</item>
		<item>
		<title>Test your .NET skills</title>
		<link>http://priyangpatel.wordpress.com/2008/04/09/test-your-net-skills/</link>
		<comments>http://priyangpatel.wordpress.com/2008/04/09/test-your-net-skills/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 09:17:00 +0000</pubDate>
		<dc:creator>priyangpatel</dc:creator>
				<category><![CDATA[Check your skills now]]></category>

		<guid isPermaLink="false">http://priyangpatel.wordpress.com/2008/04/09/test-your-net-skills/</guid>
		<description><![CDATA[ Shared assemblies are installed where?
(A) System Assembly Cache         (B) Global Assembly Cache 
(C) Machine Assembly Cache       (D) Windows Assembly Cache 
 Which of the following is not a method of System.Object?
 
(A) GetType        [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyangpatel.wordpress.com&blog=3147532&post=36&subd=priyangpatel&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><span style="font-weight:bold;font-family:times new roman;font-size:100%;"><span class="fltrivia"> Shared assemblies are installed where?</span></span><!-- B -->
<p class="flitems" style="font-family:times new roman;"><span style="font-size:100%;">(A) System Assembly Cache         (B) Global Assembly Cache </span></p>
<p class="flitems" style="font-family:times new roman;"><span style="font-size:100%;">(C) Machine Assembly Cache       (D) Windows Assembly Cache </span></p>
<p style="font-weight:bold;font-family:times new roman;" class="flitems"><span style="font-size:100%;"><span class="fltrivia"> Which of the following is not a method of System.Object?</span></span></p>
<p> <!-- D -->
<p class="flitems" style="font-family:times new roman;"><span style="font-size:100%;">(A) GetType          (B) ToString            (C) Equals             (D) Clone</span></p>
<p style="font-weight:bold;font-family:times new roman;" class="flitems"><span style="font-size:100%;"><span class="fltrivia"> What is the term used to describe the process the Runtime uses to find an assembly?</span></span></p>
<p><!-- B --> <span style="font-family:times new roman;font-size:100%;">(A) Locating          (B)  Probing            (C) Searchi</p>
<p></span>
<p class="flrtitem" style="font-family:times new roman;"><span style="font-size:100%;"><span style="font-weight:bold;">What is the default value for the Char type?</span><br />Ans: <b>&#8221;</b></span></p>
<p class="flrtitem" style="font-family:times new roman;"><span style="font-size:100%;"><span style="font-weight:bold;">Which of the following is a value type, and not a reference type?</span><br />Ans: <b> enum</b></span></p>
<p class="flrtitem" style="font-family:times new roman;"><span style="font-size:100%;"><span style="font-weight:bold;">What is the default version of an assembly?</span><br />Ans: <b> 1:0:0:0</b></span>   </p>
<p><span style="font-family:times new roman;font-size:100%;"><br /></span><span style="font-family:times new roman;font-size:100%;"></p>
<p></span></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/priyangpatel.wordpress.com/36/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/priyangpatel.wordpress.com/36/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/priyangpatel.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/priyangpatel.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/priyangpatel.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/priyangpatel.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/priyangpatel.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/priyangpatel.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/priyangpatel.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/priyangpatel.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/priyangpatel.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/priyangpatel.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=priyangpatel.wordpress.com&blog=3147532&post=36&subd=priyangpatel&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://priyangpatel.wordpress.com/2008/04/09/test-your-net-skills/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d9b86e1a63ee9383321980397d66da6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Priyang</media:title>
		</media:content>
	</item>
	</channel>
</rss>