@@ -198,7 +198,7 @@ public static bool TryGetInt32(this IQueryCollection? query, string key, [NotNul
198198 /// <param name="key">The key of the query string components.</param>
199199 /// <returns>An <see cref="int"/> array representing the converted values.</returns>
200200 /// <remarks>The value of each query string component may themselves be a separated list of <see cref="int"/>
201- /// values - eg . separated by commas. Values that can not be converted to a corresponding <see cref="int"/>
201+ /// values - e.g . separated by commas. Values that can not be converted to a corresponding <see cref="int"/>
202202 /// value will be ignored.</remarks>
203203 public static int [ ] GetInt32Array ( this IQueryCollection ? query , string key ) {
204204 return query == null ? Array . Empty < int > ( ) : query [ key ] . ToInt32Array ( ) ;
@@ -211,7 +211,7 @@ public static int[] GetInt32Array(this IQueryCollection? query, string key) {
211211 /// <param name="key">The key of the query string components.</param>
212212 /// <returns>An <see cref="int"/> list representing the converted values.</returns>
213213 /// <remarks>The value of each query string component may themselves be a separated list of <see cref="int"/>
214- /// values - eg . separated by commas. Values that can not be converted to a corresponding <see cref="int"/>
214+ /// values - e.g . separated by commas. Values that can not be converted to a corresponding <see cref="int"/>
215215 /// value will be ignored.</remarks>
216216 public static List < int > GetInt32List ( this IQueryCollection ? query , string key ) {
217217 return query ? [ key ] . ToInt32List ( ) ?? new List < int > ( ) ;
@@ -290,7 +290,7 @@ public static bool TryGetInt64(this IQueryCollection? query, string key, [NotNul
290290 /// <param name="key">The key of the query string components.</param>
291291 /// <returns>A <see cref="long"/> array representing the converted values.</returns>
292292 /// <remarks>The value of each query string component may themselves be a separated list of <see cref="long"/>
293- /// values - eg . separated by commas. Values that can not be converted to a corresponding <see cref="long"/>
293+ /// values - e.g . separated by commas. Values that can not be converted to a corresponding <see cref="long"/>
294294 /// value will be ignored.</remarks>
295295 public static long [ ] GetInt64Array ( this IQueryCollection ? query , string key ) {
296296 return query == null ? Array . Empty < long > ( ) : query [ key ] . ToInt64Array ( ) ;
@@ -303,7 +303,7 @@ public static long[] GetInt64Array(this IQueryCollection? query, string key) {
303303 /// <param name="key">The key of the query string components.</param>
304304 /// <returns>A <see cref="long"/> list representing the converted values.</returns>
305305 /// <remarks>The value of each query string component may themselves be a separated list of <see cref="long"/>
306- /// values - eg . separated by commas. Values that can not be converted to a corresponding <see cref="long"/>
306+ /// values - e.g . separated by commas. Values that can not be converted to a corresponding <see cref="long"/>
307307 /// value will be ignored.</remarks>
308308 public static List < long > GetInt64List ( this IQueryCollection ? query , string key ) {
309309 return query ? [ key ] . ToInt64List ( ) ?? new List < long > ( ) ;
@@ -382,7 +382,7 @@ public static bool TryGetFloat(this IQueryCollection? query, string key, [NotNul
382382 /// <param name="key">The key of the query string components.</param>
383383 /// <returns>A <see cref="float"/> array representing the converted values.</returns>
384384 /// <remarks>The value of each query string component may themselves be a separated list of <see cref="float"/>
385- /// values - eg . separated by commas. Values that can not be converted to a corresponding <see cref="float"/>
385+ /// values - e.g . separated by commas. Values that can not be converted to a corresponding <see cref="float"/>
386386 /// value will be ignored.</remarks>
387387 public static float [ ] GetFloatArray ( this IQueryCollection ? query , string key ) {
388388 return query ? [ key ] . ToFloatArray ( ) ?? Array . Empty < float > ( ) ;
@@ -395,7 +395,7 @@ public static float[] GetFloatArray(this IQueryCollection? query, string key) {
395395 /// <param name="key">The key of the query string components.</param>
396396 /// <returns>A <see cref="float"/> list representing the converted values.</returns>
397397 /// <remarks>The value of each query string component may themselves be a separated list of <see cref="float"/>
398- /// values - eg . separated by commas. Values that can not be converted to a corresponding <see cref="float"/>
398+ /// values - e.g . separated by commas. Values that can not be converted to a corresponding <see cref="float"/>
399399 /// value will be ignored.</remarks>
400400 public static List < float > GetFloatList ( this IQueryCollection ? query , string key ) {
401401 return query ? [ key ] . ToFloatList ( ) ?? new List < float > ( ) ;
@@ -474,7 +474,7 @@ public static bool TryGetDouble(this IQueryCollection? query, string key, [NotNu
474474 /// <param name="key">The key of the query string components.</param>
475475 /// <returns>A <see cref="double"/> array representing the converted values.</returns>
476476 /// <remarks>The value of each query string component may themselves be a separated list of <see cref="double"/>
477- /// values - eg . separated by commas. Values that can not be converted to a corresponding <see cref="double"/>
477+ /// values - e.g . separated by commas. Values that can not be converted to a corresponding <see cref="double"/>
478478 /// value will be ignored.</remarks>
479479 public static double [ ] GetDoubleArray ( this IQueryCollection ? query , string key ) {
480480 return query == null ? Array . Empty < double > ( ) : query [ key ] . ToDoubleArray ( ) ;
@@ -487,7 +487,7 @@ public static double[] GetDoubleArray(this IQueryCollection? query, string key)
487487 /// <param name="key">The key of the query string components.</param>
488488 /// <returns>A <see cref="double"/> list representing the converted values.</returns>
489489 /// <remarks>The value of each query string component may themselves be a separated list of <see cref="double"/>
490- /// values - eg . separated by commas. Values that can not be converted to a corresponding <see cref="double"/>
490+ /// values - e.g . separated by commas. Values that can not be converted to a corresponding <see cref="double"/>
491491 /// value will be ignored.</remarks>
492492 public static List < double > GetDoubleList ( this IQueryCollection ? query , string key ) {
493493 return query ? [ key ] . ToDoubleList ( ) ?? new List < double > ( ) ;
@@ -774,7 +774,7 @@ public static bool TryGetEnum<TEnum>(this IQueryCollection? query, string key, o
774774 #endregion
775775
776776 /// <summary>
777- /// Returns an URL encoded string representing the specified <paramref name="query"/>.
777+ /// Returns a URL encoded string representing the specified <paramref name="query"/>.
778778 /// </summary>
779779 /// <param name="query">The query string to be encoded.</param>
780780 /// <returns>The URL encoded version of the query string.</returns>
0 commit comments