We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3405e46 commit 8fddc56Copy full SHA for 8fddc56
src/IGLib.Core/Console/Validation/DefaultFormatProvider/Alt/CurrentCultureFormatProviderSelector.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 CurrentCultureFormatProviderSelector : IDefaultFormatProviderSelector
11
+{
12
+ public IFormatProvider DefaultFormatProvider => CultureInfo.CurrentCulture;
13
+}
14
0 commit comments