Culture Sensitive C# Constructor
using System.Collections; System.Globalization
public SortedList();
public SortedList(IComparer comparer);
public SortedList(IDictionary d);
public SortedList(int initialCapacity);
public SortedList(IComparer comparer, int capacity);
public SortedList(IDictionary d, IComparer comparer);
Internationalization (I18n) Class Overview
Initializes a new instance of the SortedList class.
The elements are sorted according to the specified IComparer implementation.
If the comparer parameter is null, the IComparable implementation of each key is used.
For more information see Microsoft's
MSDN online documentation.
Culture and Number Format Information
|