From ab29c45df9dd8345585952b648c66153f40e6f18 Mon Sep 17 00:00:00 2001 From: Anairkoen Schno Date: Mon, 22 Jul 2019 02:57:19 -0500 Subject: [PATCH] Added Net4 correct StrJP --- IPA.Loader/Utilities/Utils.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/IPA.Loader/Utilities/Utils.cs b/IPA.Loader/Utilities/Utils.cs index bad26ccd..87743ed8 100644 --- a/IPA.Loader/Utilities/Utils.cs +++ b/IPA.Loader/Utilities/Utils.cs @@ -190,6 +190,7 @@ namespace IPA.Utilities #if NET4 internal static IEnumerable StrJP(this IEnumerable a) => a; + internal static IEnumerable StrJP(this IEnumerable a) => a.Select(o => $"{o}" /* safer than .ToString() */); #endif #if NET3 internal static string[] StrJP(this IEnumerable a) => a.ToArray();