Skip to content

Commit 6e80199

Browse files
committed
Added DataTimeFormatPlug
1 parent 6bfdb1e commit 6e80199

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

source/Cosmos.Core_Plugs/System/Globalization/DateTimeFormatInfoImpl.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,10 @@ public static string get_DecimalSeparator(global::System.Globalization.DateTimeF
1414
{
1515
return ".";
1616
}
17+
18+
public static string[] get_AbbreviatedMonthNames(global::System.Globalization.DateTimeFormatInfo aThis)
19+
{
20+
return new[] { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", "" }; // its 13 for some reason
21+
}
1722
}
1823
}

0 commit comments

Comments
 (0)