We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fddc56 commit 2899f77Copy full SHA for 2899f77
src/IGLib.Core/Console/Validation/DefaultFormatProvider/Alt/InvariantCultureFormatProviderSelector.cs
@@ -0,0 +1,14 @@
1
+using System;
2
+using System.Collections.Generic;
3
+using System.ComponentModel.DataAnnotations;
4
+using System.Globalization;
5
+using System.Linq;
6
+using System.Text;
7
+
8
+namespace IGLib.Alt;
9
10
+public sealed class InvariantCultureFormatProviderSelector : IDefaultFormatProviderSelector
11
+{
12
+ public IFormatProvider DefaultFormatProvider => CultureInfo.InvariantCulture;
13
14
+}
0 commit comments