<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: REPL for C#</title>
	<atom:link href="http://www.wackylabs.net/2005/06/repl-for-c/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wackylabs.net/2005/06/repl-for-c/</link>
	<description>Climbing, Coding, Walking, Talking, Taking Photos and other Stuff</description>
	<pubDate>Tue, 06 Jan 2009 09:30:25 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>By: REPL for C#</title>
		<link>http://www.wackylabs.net/2005/06/repl-for-c/#comment-140</link>
		<dc:creator>REPL for C#</dc:creator>
		<pubDate>Wed, 31 Dec 1969 19:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.wackylabs.net/wordpress/2005/06/24/repl-for-c/#comment-140</guid>
		<description>try code below. 
The usage is &gt; { for (int i = 0 ; i++ ; i ");
				Console.Out.Flush();
				string expr = Console.ReadLine();
				if (expr == null)
					break;
				try 
				{
					string result = StringEval(expr , false );
					Console.WriteLine(result);
				}
				catch (TargetInvocationException ex) 
				{
					Console.WriteLine(ex.InnerException.GetType().Name + ": " + ex.InnerException.Message);
				}
				catch (Exception ex) 
				{
					Console.WriteLine(ex.GetType().Name + ": " + ex.Message);
				}
			}
 
		}
	}
}

</description>
		<content:encoded><![CDATA[<p>try code below.<br />
The usage is > { for (int i = 0 ; i++ ; i &#8220;);<br />
                Console.Out.Flush();<br />
                string expr = Console.ReadLine();<br />
                if (expr == null)<br />
                    break;<br />
                try<br />
                {<br />
                    string result = StringEval(expr , false );<br />
                    Console.WriteLine(result);<br />
                }<br />
                catch (TargetInvocationException ex)<br />
                {<br />
                    Console.WriteLine(ex.InnerException.GetType().Name + &#8220;: &#8221; + ex.InnerException.Message);<br />
                }<br />
                catch (Exception ex)<br />
                {<br />
                    Console.WriteLine(ex.GetType().Name + &#8220;: &#8221; + ex.Message);<br />
                }<br />
            }</p>
<pre><code>    }
}
</code></pre>
<p>}</p>
]]></content:encoded>
	</item>
</channel>
</rss>
