<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Framework for Console Applications, or how to parse command line arguments.</title>
	<atom:link href="http://jachman.wordpress.com/2006/05/05/framework-for-console-applications-or-how-to-parse-command-line-arguments/feed/" rel="self" type="application/rss+xml" />
	<link>http://jachman.wordpress.com/2006/05/05/framework-for-console-applications-or-how-to-parse-command-line-arguments/</link>
	<description>.NET C#, Oracle, SQL Server and all other stuff that gives live a sense.</description>
	<lastBuildDate>Sun, 03 Jan 2010 22:45:39 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Chuni-Muni</title>
		<link>http://jachman.wordpress.com/2006/05/05/framework-for-console-applications-or-how-to-parse-command-line-arguments/#comment-1359</link>
		<dc:creator>Chuni-Muni</dc:creator>
		<pubDate>Sun, 24 Aug 2008 07:42:11 +0000</pubDate>
		<guid isPermaLink="false">https://jachman.wordpress.com/2006/05/05/framework-for-console-applications-or-how-to-parse-command-line-arguments/#comment-1359</guid>
		<description>Another solution is NConsoler - open source library/framework that provides command line parser functionality based on attribute metadata attached to type.
Very easy to add and use library in your application. NConsoler gives ability to display help validation messages without any line of code.

http://nconsoler.csharpus.com/

Example code:

using System;
using NConsoler;

public class Program {
    public static void Main(params string[] args) {
        Consolery.Run(typeof(Program), args);
    }

    [Action]
    public static void Method(
        [Required] string name,
        [Optional(true)] bool flag) {

        Console.WriteLine(&quot;name: {0}, flag: {1}&quot;, name, flag);

    }
}</description>
		<content:encoded><![CDATA[<p>Another solution is NConsoler &#8211; open source library/framework that provides command line parser functionality based on attribute metadata attached to type.<br />
Very easy to add and use library in your application. NConsoler gives ability to display help validation messages without any line of code.</p>
<p><a href="http://nconsoler.csharpus.com/" rel="nofollow">http://nconsoler.csharpus.com/</a></p>
<p>Example code:</p>
<p>using System;<br />
using NConsoler;</p>
<p>public class Program {<br />
    public static void Main(params string[] args) {<br />
        Consolery.Run(typeof(Program), args);<br />
    }</p>
<p>    [Action]<br />
    public static void Method(<br />
        [Required] string name,<br />
        [Optional(true)] bool flag) {</p>
<p>        Console.WriteLine(&#8220;name: {0}, flag: {1}&#8221;, name, flag);</p>
<p>    }<br />
}</p>
]]></content:encoded>
	</item>
</channel>
</rss>
