<?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/"
		>
<channel>
	<title>Comments on: Sort C# Array in Descending/Reverse Order</title>
	<atom:link href="http://www.csharp411.com/sort-c-array-in-descendingreverse-order/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.csharp411.com/sort-c-array-in-descendingreverse-order/</link>
	<description>C# Development</description>
	<lastBuildDate>Fri, 03 Feb 2012 11:14:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: jecel ann ardiente</title>
		<link>http://www.csharp411.com/sort-c-array-in-descendingreverse-order/#comment-810</link>
		<dc:creator>jecel ann ardiente</dc:creator>
		<pubDate>Wed, 13 Jul 2011 03:34:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharp411.com/sort-c-array-in-descendingreverse-order/#comment-810</guid>
		<description>help me to sort it</description>
		<content:encoded><![CDATA[<p>help me to sort it</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jecel ann ardiente</title>
		<link>http://www.csharp411.com/sort-c-array-in-descendingreverse-order/#comment-809</link>
		<dc:creator>jecel ann ardiente</dc:creator>
		<pubDate>Wed, 13 Jul 2011 03:33:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharp411.com/sort-c-array-in-descendingreverse-order/#comment-809</guid>
		<description>for (int i = 0; i &lt; c.Length; i++)
            {
                Console.Write(&quot;Enter a Place [{0}]: &quot;, i);
                c[i] =int.Parse( Console.ReadLine());
                {
                foreach (int value in array);
          
            }
                Array.Reverse(array);

            }
        
        public void displayPlaces(int[] c)
        { 
        for (int i=0;i&lt;c.Length;i++)
           {
               Console.WriteLine(&quot;Places [{0}]:{1}&quot;, i, c[i]);
               foreach (string str in strArray)
                   Console.Write(str + &quot; &quot;);
        }</description>
		<content:encoded><![CDATA[<p>for (int i = 0; i &lt; c.Length; i++)<br />
            {<br />
                Console.Write(&quot;Enter a Place [{0}]: &quot;, i);<br />
                c[i] =int.Parse( Console.ReadLine());<br />
                {<br />
                foreach (int value in array);</p>
<p>            }<br />
                Array.Reverse(array);</p>
<p>            }</p>
<p>        public void displayPlaces(int[] c)<br />
        {<br />
        for (int i=0;i&lt;c.Length;i++)<br />
           {<br />
               Console.WriteLine(&quot;Places [{0}]:{1}&quot;, i, c[i]);<br />
               foreach (string str in strArray)<br />
                   Console.Write(str + &quot; &quot;);<br />
        }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nishant</title>
		<link>http://www.csharp411.com/sort-c-array-in-descendingreverse-order/#comment-808</link>
		<dc:creator>Nishant</dc:creator>
		<pubDate>Thu, 24 Mar 2011 10:00:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharp411.com/sort-c-array-in-descendingreverse-order/#comment-808</guid>
		<description>A simple implementation using delegates:

int[] intArray = new int[] { 8, 10, 2, 6, 3 };
Array.Sort(intArray, delegate(int a, int b) { return b.CompareTo(a); });

Thanks and Regards
Nishant Rana</description>
		<content:encoded><![CDATA[<p>A simple implementation using delegates:</p>
<p>int[] intArray = new int[] { 8, 10, 2, 6, 3 };<br />
Array.Sort(intArray, delegate(int a, int b) { return b.CompareTo(a); });</p>
<p>Thanks and Regards<br />
Nishant Rana</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: somil</title>
		<link>http://www.csharp411.com/sort-c-array-in-descendingreverse-order/#comment-807</link>
		<dc:creator>somil</dc:creator>
		<pubDate>Mon, 29 Nov 2010 05:38:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharp411.com/sort-c-array-in-descendingreverse-order/#comment-807</guid>
		<description>it didn&#039;t work</description>
		<content:encoded><![CDATA[<p>it didn&#8217;t work</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ako2</title>
		<link>http://www.csharp411.com/sort-c-array-in-descendingreverse-order/#comment-806</link>
		<dc:creator>Ako2</dc:creator>
		<pubDate>Sat, 03 Jul 2010 06:12:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharp411.com/sort-c-array-in-descendingreverse-order/#comment-806</guid>
		<description>It&#039;s really a big help! Thanks author..</description>
		<content:encoded><![CDATA[<p>It&#8217;s really a big help! Thanks author..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: umesh</title>
		<link>http://www.csharp411.com/sort-c-array-in-descendingreverse-order/#comment-805</link>
		<dc:creator>umesh</dc:creator>
		<pubDate>Fri, 19 Mar 2010 09:09:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharp411.com/sort-c-array-in-descendingreverse-order/#comment-805</guid>
		<description>thanks. for this information about this program in C# ..............................</description>
		<content:encoded><![CDATA[<p>thanks. for this information about this program in C# &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: simi</title>
		<link>http://www.csharp411.com/sort-c-array-in-descendingreverse-order/#comment-804</link>
		<dc:creator>simi</dc:creator>
		<pubDate>Wed, 30 Dec 2009 07:10:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharp411.com/sort-c-array-in-descendingreverse-order/#comment-804</guid>
		<description>hi,

First of all. Thanks very much for your useful post.

I just came across your blog and wanted to drop you a note telling you how impressed I was with the information you have posted here.

Please let me introduce you some info related to this post and I hope that it is useful for .Net community.

There is a good C# resource site, Have alook
 
http://www.csharptalk.com/2009/09/c-array.html
http://www.csharptalk.com/2009/10/creating-arrays.html

simi</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>First of all. Thanks very much for your useful post.</p>
<p>I just came across your blog and wanted to drop you a note telling you how impressed I was with the information you have posted here.</p>
<p>Please let me introduce you some info related to this post and I hope that it is useful for .Net community.</p>
<p>There is a good C# resource site, Have alook</p>
<p><a href="http://www.csharptalk.com/2009/09/c-array.html" rel="nofollow">http://www.csharptalk.com/2009/09/c-array.html</a><br />
<a href="http://www.csharptalk.com/2009/10/creating-arrays.html" rel="nofollow">http://www.csharptalk.com/2009/10/creating-arrays.html</a></p>
<p>simi</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anon</title>
		<link>http://www.csharp411.com/sort-c-array-in-descendingreverse-order/#comment-803</link>
		<dc:creator>anon</dc:creator>
		<pubDate>Tue, 20 Oct 2009 22:19:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharp411.com/sort-c-array-in-descendingreverse-order/#comment-803</guid>
		<description>Why reinvent the wheel ... just use List and List.Reverse</description>
		<content:encoded><![CDATA[<p>Why reinvent the wheel &#8230; just use List and List.Reverse</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: someone</title>
		<link>http://www.csharp411.com/sort-c-array-in-descendingreverse-order/#comment-802</link>
		<dc:creator>someone</dc:creator>
		<pubDate>Tue, 21 Apr 2009 04:23:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharp411.com/sort-c-array-in-descendingreverse-order/#comment-802</guid>
		<description>danks</description>
		<content:encoded><![CDATA[<p>danks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajendra</title>
		<link>http://www.csharp411.com/sort-c-array-in-descendingreverse-order/#comment-801</link>
		<dc:creator>Rajendra</dc:creator>
		<pubDate>Fri, 07 Nov 2008 10:43:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharp411.com/sort-c-array-in-descendingreverse-order/#comment-801</guid>
		<description>This artical is very useful for me. I am a .NET developer and search for generic list sort decending.

Thanks</description>
		<content:encoded><![CDATA[<p>This artical is very useful for me. I am a .NET developer and search for generic list sort decending.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

