<?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>MaxoTech Blog &#187; Google</title>
	<atom:link href="http://maxotek.net/blog/category/searches/google/feed" rel="self" type="application/rss+xml" />
	<link>http://maxotek.net/blog</link>
	<description>Technology Blog</description>
	<lastBuildDate>Wed, 29 Jun 2011 07:44:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Adding two numbers without using the + Operator</title>
		<link>http://maxotek.net/blog/adding-two-numbers-without-using-the-operatir-t62.html</link>
		<comments>http://maxotek.net/blog/adding-two-numbers-without-using-the-operatir-t62.html#comments</comments>
		<pubDate>Wed, 26 Mar 2008 19:18:02 +0000</pubDate>
		<dc:creator>partho</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://maxotek.net/blog/?p=62</guid>
		<description><![CDATA[This is pretty easy to accomplish as Minus Minus maketh plus. int A = 10; int B = 5; Console.WriteLine&#40;A - -B&#41;; Console.Read&#40;&#41;;]]></description>
			<content:encoded><![CDATA[<p>This is pretty easy to accomplish as Minus Minus maketh plus.</p>

<div class="wp_syntax"><div class="code"><pre class="csharp"><span style="color: #FF0000;">int</span> A <span style="color: #008000;">=</span> <span style="color: #FF0000;">10</span><span style="color: #008000;">;</span>
<span style="color: #FF0000;">int</span> B <span style="color: #008000;">=</span> <span style="color: #FF0000;">5</span><span style="color: #008000;">;</span>
Console.<span style="color: #0000FF;">WriteLine</span><span style="color: #000000;">&#40;</span>A <span style="color: #008000;">-</span> <span style="color: #008000;">-</span>B<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
Console.<span style="color: #0000FF;">Read</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://maxotek.net/blog/adding-two-numbers-without-using-the-operatir-t62.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to copy Array values by value and not by reference.</title>
		<link>http://maxotek.net/blog/how-to-copy-array-values-by-value-and-not-by-reference-t57.html</link>
		<comments>http://maxotek.net/blog/how-to-copy-array-values-by-value-and-not-by-reference-t57.html#comments</comments>
		<pubDate>Sun, 28 Oct 2007 10:37:55 +0000</pubDate>
		<dc:creator>partho</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://maxotek.net/blog/?p=57</guid>
		<description><![CDATA[When you try to copy the value of one Array into another, you actually end up having two references to the same array. This is because an Array is a reference type. int&#91;&#93; A = &#123; 1, 2, 3 &#125;; int&#91;&#93; B = A; B&#91;1&#93; = 69; Console.WriteLine&#40;A&#91;1&#93;&#41;; The above code would give an output [...]]]></description>
			<content:encoded><![CDATA[<p>When you try to copy the value of one <a href="?p=36#cArray">Array</a> into another, you actually end up having two references to the same array. This is because an Array is a reference type.</p>

<div class="wp_syntax"><div class="code"><pre class="csharp"><span style="color: #FF0000;">int</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">&#93;</span> A <span style="color: #008000;">=</span> <span style="color: #000000;">&#123;</span> <span style="color: #FF0000;">1</span>, <span style="color: #FF0000;">2</span>, <span style="color: #FF0000;">3</span> <span style="color: #000000;">&#125;</span><span style="color: #008000;">;</span>
<span style="color: #FF0000;">int</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">&#93;</span> B <span style="color: #008000;">=</span> A<span style="color: #008000;">;</span>
B<span style="color: #000000;">&#91;</span><span style="color: #FF0000;">1</span><span style="color: #000000;">&#93;</span> <span style="color: #008000;">=</span> <span style="color: #FF0000;">69</span><span style="color: #008000;">;</span>
Console.<span style="color: #0000FF;">WriteLine</span><span style="color: #000000;">&#40;</span>A<span style="color: #000000;">&#91;</span><span style="color: #FF0000;">1</span><span style="color: #000000;">&#93;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span></pre></div></div>

<p>The above code would give an output of 69. As you can see, changes made to the elements of array B are applied to those of array A.</p>
<p>To do a copy by value you need to iterate through each of the Array elements in the source array and assign the value to the corresponding index in the destination array.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
</pre></td><td class="code"><pre class="csharp"><span style="color: #FF0000;">int</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">&#93;</span> A <span style="color: #008000;">=</span> <span style="color: #000000;">&#123;</span> <span style="color: #FF0000;">1</span>, <span style="color: #FF0000;">2</span>, <span style="color: #FF0000;">3</span> <span style="color: #000000;">&#125;</span><span style="color: #008000;">;</span>
&nbsp;
<span style="color: #008080; font-style: italic;">// Set the Size of Array B to be the same as that of Array A.</span>
<span style="color: #FF0000;">int</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">&#93;</span> B <span style="color: #008000;">=</span> <span style="color: #008000;">new</span> <span style="color: #FF0000;">int</span><span style="color: #000000;">&#91;</span>A.<span style="color: #0000FF;">Length</span><span style="color: #000000;">&#93;</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">for</span> <span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span> I <span style="color: #008000;">=</span> <span style="color: #FF0000;">0</span><span style="color: #008000;">;</span> I <span style="color: #008000;">&lt;</span> A.<span style="color: #0000FF;">Length</span><span style="color: #008000;">;</span> I<span style="color: #008000;">++</span><span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
    B<span style="color: #000000;">&#91;</span>I<span style="color: #000000;">&#93;</span> <span style="color: #008000;">=</span> A<span style="color: #000000;">&#91;</span>I<span style="color: #000000;">&#93;</span><span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span></pre></td></tr></table></div>

<p>There is a much simpler way to do this using the static method <b>Copy</b> of the Abstract class Array.</p>

<div class="wp_syntax"><div class="code"><pre class="csharp"><span style="color: #FF0000;">int</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">&#93;</span> A <span style="color: #008000;">=</span> <span style="color: #000000;">&#123;</span> <span style="color: #FF0000;">1</span>, <span style="color: #FF0000;">2</span>, <span style="color: #FF0000;">3</span> <span style="color: #000000;">&#125;</span><span style="color: #008000;">;</span>
&nbsp;
<span style="color: #008080; font-style: italic;">// Set the Size of Array B to be the same as that of Array A.</span>
<span style="color: #FF0000;">int</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">&#93;</span> B <span style="color: #008000;">=</span> <span style="color: #008000;">new</span> <span style="color: #FF0000;">int</span><span style="color: #000000;">&#91;</span>Arr.<span style="color: #0000FF;">Length</span><span style="color: #000000;">&#93;</span><span style="color: #008000;">;</span>
Array.<span style="color: #0000FF;">Copy</span><span style="color: #000000;">&#40;</span>A, <span style="color: #FF0000;">0</span>, B, <span style="color: #FF0000;">0</span>, Arr.<span style="color: #0000FF;">Length</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span></pre></div></div>

<p>The Copy method is overloaded into 4 forms with two variations:-</p>

<div class="wp_syntax"><div class="code"><pre class="csharp">Array.<span style="color: #0000FF;">Copy</span><span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">&#93;</span> SourceArray, <span style="color: #FF0000;">int</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">&#93;</span> DestinationArray, <span style="color: #FF0000;">int</span> NumberOfElementsToCopy<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
Array.<span style="color: #0000FF;">Copy</span><span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">&#93;</span> SourceArray, <span style="color: #FF0000;">int</span> SourceIndexToStartCopyFrom,
<span style="color: #FF0000;">int</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">&#93;</span> DestinationArray, <span style="color: #FF0000;">int</span> DestinationIndextToStartCopyFrom, <span style="color: #FF0000;">int</span> NumberOfElementsToCopy<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span></pre></div></div>

<p>The remaining two forms are the long counterparts of these two.</p>
]]></content:encoded>
			<wfw:commentRss>http://maxotek.net/blog/how-to-copy-array-values-by-value-and-not-by-reference-t57.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What is Convert.ToInt32(Console.ReadLine()) Method In C#</title>
		<link>http://maxotek.net/blog/what-is-converttoint32consolereadline-method-in-c-t56.html</link>
		<comments>http://maxotek.net/blog/what-is-converttoint32consolereadline-method-in-c-t56.html#comments</comments>
		<pubDate>Sun, 28 Oct 2007 10:13:36 +0000</pubDate>
		<dc:creator>partho</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://maxotek.net/blog/?p=56</guid>
		<description><![CDATA[The method Console.ReadLine always reads the input from the user in the form of a string. To get an integer value from the user, this string needs to be converted to Integer. The Convert.ToInt32 does this. Example Code:- Console.WriteLine&#40;&#34;Please enter a number&#34;&#41;; int Num = Convert.ToInt32&#40;Console.ReadLine&#40;&#41;&#41;;]]></description>
			<content:encoded><![CDATA[<p>The method <b>Console.ReadLine</b> always reads the input from the user in the form of a string. To get an integer value from the user, this string needs to be converted to Integer. The <b>Convert.ToInt32</b> does this.</p>
<p>Example Code:-</p>

<div class="wp_syntax"><div class="code"><pre class="csharp">Console.<span style="color: #0000FF;">WriteLine</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;Please enter a number&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
<span style="color: #FF0000;">int</span> Num <span style="color: #008000;">=</span> Convert.<span style="color: #0000FF;">ToInt32</span><span style="color: #000000;">&#40;</span>Console.<span style="color: #0000FF;">ReadLine</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://maxotek.net/blog/what-is-converttoint32consolereadline-method-in-c-t56.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Can Destructors Be Parameterized?</title>
		<link>http://maxotek.net/blog/can-destructors-be-parameterized-t55.html</link>
		<comments>http://maxotek.net/blog/can-destructors-be-parameterized-t55.html#comments</comments>
		<pubDate>Sun, 28 Oct 2007 10:07:09 +0000</pubDate>
		<dc:creator>partho</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://maxotek.net/blog/?p=55</guid>
		<description><![CDATA[Destructors being automatically invoked, cannot be Parameterized.]]></description>
			<content:encoded><![CDATA[<p><a href="?p=39#cDestructor">Destructors</a> being automatically invoked, cannot be Parameterized.</p>
]]></content:encoded>
			<wfw:commentRss>http://maxotek.net/blog/can-destructors-be-parameterized-t55.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get the name of the currently executing Function/Method</title>
		<link>http://maxotek.net/blog/get-the-name-of-the-currently-executing-functionmethod-t42.html</link>
		<comments>http://maxotek.net/blog/get-the-name-of-the-currently-executing-functionmethod-t42.html#comments</comments>
		<pubDate>Tue, 07 Aug 2007 22:04:22 +0000</pubDate>
		<dc:creator>partho</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://maxotek.net/blog/?p=42</guid>
		<description><![CDATA[A StackFrame is created and pushed on the call stack for every function call made during the execution of a thread. The stack frame always includes MethodBase information, and optionally includes file name, line number, and column number information. Source: MSDN 1 2 3 System.Diagnostics.StackFrame sf = new System.Diagnostics.StackFrame&#40;&#41;; System.Reflection.MethodBase mb = sf.GetMethod&#40;&#41;; Console.WriteLine&#40;mb.Name&#41;; This [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>A StackFrame is created and pushed on the call stack for every function call made during the execution of a thread. The stack frame always includes MethodBase information, and optionally includes file name, line number, and column number information.</p></blockquote>
<p>Source: MSDN</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="csharp"><span style="color: #000000;">System</span>.<span style="color: #0000FF;">Diagnostics</span>.<span style="color: #0000FF;">StackFrame</span> sf <span style="color: #008000;">=</span> <span style="color: #008000;">new</span> <span style="color: #000000;">System</span>.<span style="color: #0000FF;">Diagnostics</span>.<span style="color: #0000FF;">StackFrame</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
<span style="color: #000000;">System</span>.<span style="color: #0000FF;">Reflection</span>.<span style="color: #0000FF;">MethodBase</span> mb <span style="color: #008000;">=</span> sf.<span style="color: #0000FF;">GetMethod</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
Console.<span style="color: #0000FF;">WriteLine</span><span style="color: #000000;">&#40;</span>mb.<span style="color: #0000FF;">Name</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span></pre></td></tr></table></div>

<p>This code can be used to get the name of the current class.</p>

<div class="wp_syntax"><div class="code"><pre class="csharp"><span style="color: #FF0000;">string</span> ClassName <span style="color: #008000;">=</span> <span style="color: #0600FF;">this</span>.<span style="color: #0000FF;">GetType</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>.<span style="color: #0000FF;">Name</span><span style="color: #008000;">;</span></pre></div></div>

<p><i>Note: This code can only be called inside a non-static method/function. This is because a static method cannot put into use the instance retriever &#8211; <strong>this</strong> keyword. </i></p>
]]></content:encoded>
			<wfw:commentRss>http://maxotek.net/blog/get-the-name-of-the-currently-executing-functionmethod-t42.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Default Return type of functions in C#</title>
		<link>http://maxotek.net/blog/default-return-type-of-functions-in-c-t41.html</link>
		<comments>http://maxotek.net/blog/default-return-type-of-functions-in-c-t41.html#comments</comments>
		<pubDate>Tue, 07 Aug 2007 21:32:32 +0000</pubDate>
		<dc:creator>partho</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://maxotek.net/blog/?p=41</guid>
		<description><![CDATA[There is NO default return type of functions in C#. If you don&#8217;t want to return any value, the function must be declared as void. 1 2 3 4 public void MyFunc&#40;&#41; &#123; Console.Write&#40;&#34;My Function&#34;&#41;; &#125;]]></description>
			<content:encoded><![CDATA[<p>There is NO default return type of functions in C#. If you don&#8217;t want to return any value, the function must be declared as <b>void</b>.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="csharp"><span style="color: #0600FF;">public</span> <span style="color: #0600FF;">void</span> MyFunc<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
    Console.<span style="color: #0000FF;">Write</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;My Function&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://maxotek.net/blog/default-return-type-of-functions-in-c-t41.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What statements can come with &#8220;continue&#8221; statement in C#</title>
		<link>http://maxotek.net/blog/what-statements-can-come-with-continue-statement-in-c-t40.html</link>
		<comments>http://maxotek.net/blog/what-statements-can-come-with-continue-statement-in-c-t40.html#comments</comments>
		<pubDate>Tue, 07 Aug 2007 21:24:31 +0000</pubDate>
		<dc:creator>partho</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://maxotek.net/blog/?p=40</guid>
		<description><![CDATA[The continue statement is used to pass the control to the next iteration of the loop it is in. So, it can only be used with loops. for 1 2 3 4 5 6 7 8 for &#40;int I = 0; I &#60; 10; I++&#41; &#123; if &#40;I % 2 == 0&#41; &#123; continue; &#125; [...]]]></description>
			<content:encoded><![CDATA[<p>The continue statement is used to pass the control to the next iteration of the loop it is in. So, it can only be used with loops.</p>
<h2>for</h2>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
</pre></td><td class="code"><pre class="csharp"><span style="color: #0600FF;">for</span> <span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span> I <span style="color: #008000;">=</span> <span style="color: #FF0000;">0</span><span style="color: #008000;">;</span> I <span style="color: #008000;">&lt;</span> <span style="color: #FF0000;">10</span><span style="color: #008000;">;</span> I<span style="color: #008000;">++</span><span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
    <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>I <span style="color: #008000;">%</span> <span style="color: #FF0000;">2</span> <span style="color: #008000;">==</span> <span style="color: #FF0000;">0</span><span style="color: #000000;">&#41;</span>
    <span style="color: #000000;">&#123;</span>
        continue<span style="color: #008000;">;</span>
    <span style="color: #000000;">&#125;</span>
    Console.<span style="color: #0000FF;">WriteLine</span><span style="color: #000000;">&#40;</span>I<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span></pre></td></tr></table></div>

<h2>foreach</h2>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code"><pre class="csharp"><span style="color: #FF0000;">int</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">&#93;</span> Numbers <span style="color: #008000;">=</span> <span style="color: #000000;">&#123;</span> <span style="color: #FF0000;">0</span>, <span style="color: #FF0000;">1</span>, <span style="color: #FF0000;">2</span>, <span style="color: #FF0000;">3</span>, <span style="color: #FF0000;">4</span>, <span style="color: #FF0000;">5</span>, <span style="color: #FF0000;">6</span>, <span style="color: #FF0000;">7</span>, <span style="color: #FF0000;">8</span>, <span style="color: #FF0000;">9</span> <span style="color: #000000;">&#125;</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">foreach</span> <span style="color: #000000;">&#40;</span><span style="color: #FF0000;">int</span> Number <span style="color: #0600FF;">in</span> Numbers<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
    <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>Number <span style="color: #008000;">%</span> <span style="color: #FF0000;">2</span> <span style="color: #008000;">==</span> <span style="color: #FF0000;">0</span><span style="color: #000000;">&#41;</span>
    <span style="color: #000000;">&#123;</span>
        continue<span style="color: #008000;">;</span>
    <span style="color: #000000;">&#125;</span>
    Console.<span style="color: #0000FF;">WriteLine</span><span style="color: #000000;">&#40;</span>Number<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span></pre></td></tr></table></div>

<h2>while/do while</h2>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
</pre></td><td class="code"><pre class="csharp"><span style="color: #FF0000;">string</span> Name <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;&quot;</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">do</span>
<span style="color: #000000;">&#123;</span>
    Console.<span style="color: #0000FF;">Write</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;Enter a Name:&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
    Name <span style="color: #008000;">=</span> Console.<span style="color: #0000FF;">ReadLine</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
    <span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span>Name <span style="color: #008000;">==</span> <span style="color: #666666;">&quot;Parastratiosphecomyia stratiosphecomyioides&quot;</span><span style="color: #000000;">&#41;</span>
    <span style="color: #000000;">&#123;</span>
        <span style="color: #008080; font-style: italic;">// The animal with the longest Scientific Name???</span>
        continue<span style="color: #008000;">;</span>
    <span style="color: #000000;">&#125;</span>
    <span style="color: #0600FF;">if</span><span style="color: #000000;">&#40;</span>Name <span style="color: #008000;">!=</span> <span style="color: #666666;">&quot;&quot;</span><span style="color: #000000;">&#41;</span>
        Console.<span style="color: #0000FF;">WriteLine</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;{0} is a good name&quot;</span>, Name<span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
&nbsp;
<span style="color: #000000;">&#125;</span> <span style="color: #0600FF;">while</span> <span style="color: #000000;">&#40;</span>Name <span style="color: #008000;">!=</span> <span style="color: #666666;">&quot;&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://maxotek.net/blog/what-statements-can-come-with-continue-statement-in-c-t40.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

