1 type derived from SortedList
System.IdentityModel (1)
21 instantiations of SortedList
PresentationCore (1)
PresentationFramework (2)
System (2)
System.ServiceModel (6)
System.Web.Extensions (6)
System.Workflow.Runtime (1)
System.WorkflowServices (1)
WindowsBase (2)
56 references to SortedList
PresentationCore (2)
PresentationFramework (3)
System (14)
compmod\system\collections\generic\sortedlist.cs (10)
688private SortedList<TKey, TValue> _sortedList;
698internal Enumerator(SortedList<TKey, TValue> sortedList, int getEnumeratorRetType) {
797private SortedList<TKey, TValue> _sortedList;
802internal SortedListKeyEnumerator(SortedList<TKey, TValue> sortedList) {
858private SortedList<TKey, TValue> _sortedList;
863internal SortedListValueEnumerator(SortedList<TKey, TValue> sortedList) {
921private SortedList<TKey, TValue> _dict;
923internal KeyList(SortedList<TKey, TValue> dictionary) {
1021private SortedList<TKey, TValue> _dict;
1023internal ValueList(SortedList<TKey, TValue> dictionary) {
System.ServiceModel (7)
System.Web.Extensions (16)
UI\ProfileServiceManager.cs (12)
132SortedList<string, object> topLevelSettings = new SortedList<string, object>(loadedProperties.Count);
133SortedList<string, SortedList<string, object>> profileGroups = null;
167SortedList<string, object> topLevelSettings,
168ref SortedList<string, SortedList<string, object>> profileGroups,
177SortedList<string, object> containingObject;
189profileGroups = new SortedList<string, SortedList<string, object>>();
212private static void RenderProfileProperties(StringBuilder sb, SortedList<string, object> topLevelSettings, SortedList<string, SortedList<string, object>> profileGroups) {
225foreach(KeyValuePair<string, SortedList<string, object>> group in profileGroups) {
System.Workflow.Runtime (9)
WorkBatch.cs (9)
130foreach (KeyValuePair<IPendingWork, SortedList<long, object>> item in batch._pendingWorkCollection.WorkItems)
133SortedList<long, object> newItems = item.Value;
168Dictionary<IPendingWork, SortedList<long, object>> Items;
173Items = new Dictionary<IPendingWork, SortedList<long, object>>();
176internal Dictionary<IPendingWork, SortedList<long, object>> WorkItems
202foreach (KeyValuePair<IPendingWork, SortedList<long, object>> workItem in this.WorkItems)
232SortedList<long, object> workItems = null;
248foreach (KeyValuePair<IPendingWork, SortedList<long, object>> workItem in Items)
259foreach (KeyValuePair<IPendingWork, SortedList<long, object>> workItem in Items)
System.WorkflowServices (1)
WindowsBase (4)