Thank you Jon for your reply,
I am using Visual Studio 2008 Professional with .Net 3.5
I appreciate your assistance.
Edwin
"Jon Skeet [C# MVP]" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Edwin <(E-Mail Removed)> wrote:
>> What I am trying to do is come up with a way to determine how many unique
>> extensions there are within a directory and its sub directories. Within
>> the
>> loop that recurses root folder, I am attempting to use a SortedList.
>> Below
>> is the code:
>>
>> private System.Collections.SortedList _ArrayListOfExtensions = new
>> SortedList(new CaseInsensitiveComparer());
>
> SortedList isn't an ArrayList - it's a dictionary, basically.
>
> Are you using .NET 3.5? LINQ would make this pretty much trivial...
>
> --
> Jon Skeet - <(E-Mail Removed)>
> Web site: http://www.pobox.com/~skeet
> Blog: http://www.msmvps.com/jon.skeet
> C# in Depth: http://csharpindepth.com