6 instantiations of SortedDictionary
System.Workflow.ComponentModel (2)
AuthoringOM\Filters\CompensationHandlingFilter.cs (2)
134SortedDictionary<int, CompensationInfo> sortedListOfCompensatableTargets = new SortedDictionary<int, CompensationInfo>(); 396SortedDictionary<int, Activity> sortedListOfCompensatableTargets = new SortedDictionary<int, Activity>();
WindowsBase (4)
Base\MS\Internal\IO\Packaging\XmlDigitalSignatureProcessor.cs (1)
951new SortedDictionary<String, PackageRelationship>(StringComparer.Ordinal);
Base\MS\Internal\IO\Packaging\XmlSignatureManifest.cs (1)
824relationshipsDictionarySortedById = new SortedDictionary<String, PackageRelationship>(StringComparer.Ordinal);
Base\System\IO\Packaging\ZipPackage.cs (2)
235SortedDictionary<PieceInfo, Object> pieceDictionary = new SortedDictionary<PieceInfo, Object>(PieceNameHelper.PieceNameComparer); 1220contentTypeStreamPieces = new SortedDictionary<PieceInfo, ZipFileInfo>(PieceNameHelper.PieceNameComparer);
19 references to SortedDictionary
System (9)
compmod\system\collections\generic\sorteddictionary.cs (9)
363internal Enumerator(SortedDictionary<TKey, TValue> dictionary, int getEnumeratorRetType) { 449private SortedDictionary<TKey,TValue> dictionary; 451public KeyCollection(SortedDictionary<TKey,TValue> dictionary) { 561private SortedDictionary<TKey, TValue>.Enumerator dictEnum; 563internal Enumerator(SortedDictionary<TKey, TValue> dictionary) { 604private SortedDictionary<TKey,TValue> dictionary; 606public ValueCollection(SortedDictionary<TKey,TValue> dictionary) { 716private SortedDictionary<TKey, TValue>.Enumerator dictEnum; 718internal Enumerator(SortedDictionary<TKey, TValue> dictionary) {
System.Workflow.ComponentModel (5)
AuthoringOM\Filters\CompensationHandlingFilter.cs (5)
134SortedDictionary<int, CompensationInfo> sortedListOfCompensatableTargets = new SortedDictionary<int, CompensationInfo>(); 296private static bool CollectCompensatableTargetActivities(CompositeActivity compositeActivity, SortedDictionary<int, CompensationInfo> sortedListOfCompensatableTargets, bool immediateCompensation) 324private static bool CollectCompensatableActiveContexts(ActivityExecutionContext context, Activity targetActivity, SortedDictionary<int, CompensationInfo> sortedListOfCompensatableTargets, bool immediateCompensation) 375private static void CollectCompensatableCompletedContexts(ActivityExecutionContext context, Activity targetActivity, SortedDictionary<int, CompensationInfo> sortedListOfCompensatableTargets, bool immediateCompensation) 396SortedDictionary<int, Activity> sortedListOfCompensatableTargets = new SortedDictionary<int, Activity>();
WindowsBase (5)
Base\MS\Internal\IO\Packaging\XmlDigitalSignatureProcessor.cs (1)
950SortedDictionary<String, PackageRelationship> partRelationships =
Base\MS\Internal\IO\Packaging\XmlSignatureManifest.cs (1)
823SortedDictionary<String, PackageRelationship>
Base\System\IO\Packaging\ZipPackage.cs (3)
235SortedDictionary<PieceInfo, Object> pieceDictionary = new SortedDictionary<PieceInfo, Object>(PieceNameHelper.PieceNameComparer); 655private void ProcessPieces(SortedDictionary<PieceInfo, Object> pieceDictionary, List<PackagePart> parts) 1201SortedDictionary<PieceInfo, ZipFileInfo> contentTypeStreamPieces = null;