@@ -69,18 +69,25 @@ internal static string Format(string? input, Indentation indentationMode, bool s
69
69
LineInfoHandling = LineInfoHandling . Load
70
70
} ;
71
71
72
- JObject jObject ;
72
+ JToken jToken ;
73
73
using ( var jsonReader = new JsonTextReader ( new StringReader ( input ) ) )
74
74
{
75
75
jsonReader . DateParseHandling = DateParseHandling . None ;
76
76
jsonReader . DateTimeZoneHandling = DateTimeZoneHandling . RoundtripKind ;
77
77
78
- jObject = JObject . Load ( jsonReader , jsonLoadSettings ) ;
78
+ jToken = JToken . Load ( jsonReader , jsonLoadSettings ) ;
79
79
}
80
80
81
81
if ( sortProperties )
82
82
{
83
- SortJsonPropertiesAlphabetically ( jObject ) ;
83
+ if ( jToken is JObject obj )
84
+ {
85
+ SortJsonPropertiesAlphabetically ( obj ) ;
86
+ }
87
+ else if ( jToken is JArray array )
88
+ {
89
+ SortJsonPropertiesAlphabetically ( array ) ;
90
+ }
84
91
}
85
92
86
93
var stringBuilder = new StringBuilder ( ) ;
@@ -114,7 +121,7 @@ internal static string Format(string? input, Indentation indentationMode, bool s
114
121
jsonTextWriter . DateFormatHandling = DateFormatHandling . IsoDateFormat ;
115
122
jsonTextWriter . DateTimeZoneHandling = DateTimeZoneHandling . RoundtripKind ;
116
123
117
- jObject . WriteTo ( jsonTextWriter ) ;
124
+ jToken . WriteTo ( jsonTextWriter ) ;
118
125
}
119
126
120
127
return stringBuilder . ToString ( ) ;
@@ -215,13 +222,22 @@ private static void SortJsonPropertiesAlphabetically(JObject jObject)
215
222
}
216
223
else if ( property . Value is JArray array )
217
224
{
218
- foreach ( JToken ? arrayItem in array )
219
- {
220
- if ( arrayItem is JObject arrayObj )
221
- {
222
- SortJsonPropertiesAlphabetically ( arrayObj ) ;
223
- }
224
- }
225
+ SortJsonPropertiesAlphabetically ( array ) ;
226
+ }
227
+ }
228
+ }
229
+
230
+ private static void SortJsonPropertiesAlphabetically ( JArray jArray )
231
+ {
232
+ foreach ( JToken ? arrayItem in jArray )
233
+ {
234
+ if ( arrayItem is JObject arrayObj )
235
+ {
236
+ SortJsonPropertiesAlphabetically ( arrayObj ) ;
237
+ }
238
+ else if ( arrayItem is JArray array )
239
+ {
240
+ SortJsonPropertiesAlphabetically ( array ) ;
225
241
}
226
242
}
227
243
}
0 commit comments