5 references to SortedDictionary
System (1)
compmod\system\collections\generic\sorteddictionary.cs (1)
25public SortedDictionary() : this((IComparer<TKey>)null) {
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);