<?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>C#, VB.Net, XML and mass consumption of coffee. &#187; Visual Studio</title>
	<atom:link href="http://www.paul-zubkov.com/tag/visual-studio/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.paul-zubkov.com</link>
	<description></description>
	<lastBuildDate>Wed, 03 Feb 2010 18:25:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>New (at least for me) IO functions.</title>
		<link>http://www.paul-zubkov.com/2009/06/30/new-at-least-for-me-io-functions/</link>
		<comments>http://www.paul-zubkov.com/2009/06/30/new-at-least-for-me-io-functions/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 04:39:24 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.paul-zubkov.com/?p=212</guid>
		<description><![CDATA[
Well, live and learn.  This was an interesting day.  I am working on a little project right now, can&#8217;t really discuss details, and quite frankly it is nothing that I am going to be too proud of once it is done.  But this is not the point.  I had to do [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-217" title="embarrassing" src="http://www.paul-zubkov.com/wp-content/uploads/2009/06/bear.png" alt="embarrassing" width="296" height="200" /></p>
<p>Well, live and learn.  This was an interesting day.  I am working on a little project right now, can&#8217;t really discuss details, and quite frankly it is nothing that I am going to be too proud of once it is done.  But this is not the point.  I had to do some minor IO work with this and this is when I found that instead of doing stuff like:<code lang="csharp"></p>
<p>_fsCFileStream = new FileStream(sFileName, FileMode.Open, System.IO.FileAccess.Read);<br />
_srStreamReader = new StreamReader(_fsCfMCCSV, Encoding.GetEncoding(1252));</p>
<p>try<br />
{<br />
    if ((sLineIn = _srCfMCCSV.ReadLine()) == null)<br />
        //do stuff here<br />
}catch(){}<br />
</code><br />
I can simply do<br />
<code lang="csharp"><br />
File.ReadAllLines();<br />
</code></p>
<p>I guess I was stuck on .Net 1.3 for so long, I completely skipped 2.x and now 3.5 is full of surprises.  I know I am behind times, need to catch up soon.  Gone to do some reading.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paul-zubkov.com/2009/06/30/new-at-least-for-me-io-functions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keyboard shortcuts Visual Studio 2008</title>
		<link>http://www.paul-zubkov.com/2009/01/26/keyboard-shortcuts-visual-studio-2008/</link>
		<comments>http://www.paul-zubkov.com/2009/01/26/keyboard-shortcuts-visual-studio-2008/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 20:33:45 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[keyboard shortcuts]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.paul-zubkov.com/?p=137</guid>
		<description><![CDATA[
When it comes to development, IDE is an important part of the process.  Some people still use some sort of a text editor to do all their coding, and I applaud them for it.  I on the other hand am not a big proponent of typing out all your namespaces / commands / [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-138" title="1003082_60642695" src="http://www.paul-zubkov.com/wp-content/uploads/2009/01/1003082_60642695.jpg" alt="1003082_60642695" width="300" height="178" /></p>
<p>When it comes to development, IDE is an important part of the process.  Some people still use some sort of a text editor to do all their coding, and I applaud them for it.  I on the other hand am not a big proponent of typing out all your namespaces / commands / functions, nor am I capable of memorizing all the functions that are available in a language, so I use IDE.  Since I am coding C# mostly, I am using Visual Studio.  I have to admit – I love Visual Studio, especially with <a href="http://www.jetbrains.com/resharper/">ReSharper</a> (I don&#8217;t work for JetBrains, I just simply love this tool) added to the mix.  I also have to say for the last 5 years I have not been using desktop to do my coding.  I am addicted to laptops, and my boss have been kind enough to always providing me the newest and most powerful laptop budget can allow.  This is why I love the idea of not using your mouse, after all, Visual Studio does come with a great deal of keyboard shortcuts, so why not use it?<span id="more-137"></span>Below is a list of the keyboard shortcuts I use:</p>
<p>Building</p>
<ul>
<li>Ctrl + Shift + B or simply F6  – compiles your solution.</li>
<li>Shift + F6 – compiles current project</li>
</ul>
<p>Debugging:</p>
<ul>
<li>Ctrl + D, C – Display Call Stack window</li>
<li>Ctrl + D, I – Display Immediate window</li>
<li>Ctrl + F5 – Start without debugging</li>
<li>F9 – Set or remove breakpoint</li>
<li>Ctrl + D, W – display Watch window</li>
</ul>
<p>Editing:</p>
<ul>
<li>Ctrl + M, O – Collapse regions</li>
<li>Ctrl + K, F – Format selection</li>
</ul>
<p>For a quick reminder of the keyboard shortcuts see:</p>
<p><a href="http://www.microsoft.com/downloads/thankyou.aspx?familyId=e5f902a8-5bb5-4cc6-907e-472809749973&#038;displayLang=en#">C# keyboard shortcuts</a><br />
<a href="http://www.microsoft.com/downloads/details.aspx?familyid=255b8cf1-f6bd-4b55-bb42-dd1a69315833&#038;displaylang=en"> Vb.Net keyboard shortcuts</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.paul-zubkov.com/2009/01/26/keyboard-shortcuts-visual-studio-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
