From 7184b116e02f91713c7f2feff05dc3eaf70f9cd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Sim=C3=B5es?= Date: Mon, 10 Jun 2019 19:30:49 +0100 Subject: [PATCH] Fix SortableDateTimePattern - Was recursivly accessing itself instead of the appropriate constant. --- .../System/Globalization/DateTimeFormatInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/nanoFramework.CoreLibrary/System/Globalization/DateTimeFormatInfo.cs b/source/nanoFramework.CoreLibrary/System/Globalization/DateTimeFormatInfo.cs index dd65e2fb..c54b50ae 100644 --- a/source/nanoFramework.CoreLibrary/System/Globalization/DateTimeFormatInfo.cs +++ b/source/nanoFramework.CoreLibrary/System/Globalization/DateTimeFormatInfo.cs @@ -166,7 +166,7 @@ public String SortableDateTimePattern { get { - return SortableDateTimePattern; + return _sortableDateTimePattern; } }