@@ -36,19 +36,19 @@ public sealed class PInvokeGeneratorConfiguration
36
36
private readonly SortedSet < string > _withSetLastErrors ;
37
37
private readonly SortedSet < string > _withSuppressGCTransitions ;
38
38
39
- private readonly SortedDictionary < string , string > _remappedNames ;
40
- private readonly SortedDictionary < string , AccessSpecifier > _withAccessSpecifiers ;
41
- private readonly SortedDictionary < string , IReadOnlyList < string > > _withAttributes ;
42
- private readonly SortedDictionary < string , string > _withCallConvs ;
43
- private readonly SortedDictionary < string , string > _withClasses ;
44
- private readonly SortedDictionary < string , Guid > _withGuids ;
45
- private readonly SortedDictionary < string , string > _withLengths ;
46
- private readonly SortedDictionary < string , string > _withLibraryPaths ;
47
- private readonly SortedDictionary < string , string > _withNamespaces ;
48
- private readonly SortedDictionary < string , ( string , PInvokeGeneratorTransparentStructKind ) > _withTransparentStructs ;
49
- private readonly SortedDictionary < string , string > _withTypes ;
50
- private readonly SortedDictionary < string , IReadOnlyList < string > > _withUsings ;
51
- private readonly SortedDictionary < string , string > _withPackings ;
39
+ private readonly Dictionary < string , string > _remappedNames ;
40
+ private readonly Dictionary < string , AccessSpecifier > _withAccessSpecifiers ;
41
+ private readonly Dictionary < string , IReadOnlyList < string > > _withAttributes ;
42
+ private readonly Dictionary < string , string > _withCallConvs ;
43
+ private readonly Dictionary < string , string > _withClasses ;
44
+ private readonly Dictionary < string , Guid > _withGuids ;
45
+ private readonly Dictionary < string , string > _withLengths ;
46
+ private readonly Dictionary < string , string > _withLibraryPaths ;
47
+ private readonly Dictionary < string , string > _withNamespaces ;
48
+ private readonly Dictionary < string , ( string , PInvokeGeneratorTransparentStructKind ) > _withTransparentStructs ;
49
+ private readonly Dictionary < string , string > _withTypes ;
50
+ private readonly Dictionary < string , IReadOnlyList < string > > _withUsings ;
51
+ private readonly Dictionary < string , string > _withPackings ;
52
52
53
53
private PInvokeGeneratorConfigurationOptions _options ;
54
54
@@ -612,7 +612,7 @@ public static AccessSpecifier ConvertStringToAccessSpecifier(string input)
612
612
: input . Equals ( "public" , StringComparison . OrdinalIgnoreCase ) ? AccessSpecifier . Public : AccessSpecifier . None ;
613
613
}
614
614
615
- private static void AddRange< TValue > ( SortedDictionary < string , TValue > dictionary , IEnumerable < KeyValuePair < string , TValue > > ? keyValuePairs )
615
+ private static void AddRange< TValue > ( Dictionary < string , TValue > dictionary , IEnumerable < KeyValuePair < string , TValue > > ? keyValuePairs )
616
616
{
617
617
if ( keyValuePairs != null )
618
618
{
@@ -625,7 +625,7 @@ private static void AddRange<TValue>(SortedDictionary<string, TValue> dictionary
625
625
}
626
626
}
627
627
628
- private static void AddRange< TInput , TValue > ( SortedDictionary < string , TValue > dictionary , IEnumerable < KeyValuePair < string , TInput > > ? keyValuePairs , Func < TInput , TValue > convert )
628
+ private static void AddRange< TInput , TValue > ( Dictionary < string , TValue > dictionary , IEnumerable < KeyValuePair < string , TInput > > ? keyValuePairs , Func < TInput , TValue > convert )
629
629
{
630
630
if ( keyValuePairs != null )
631
631
{
0 commit comments