Browse Source

Added Net4 correct StrJP

pull/46/head
Anairkoen Schno 5 years ago
parent
commit
ab29c45df9
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      IPA.Loader/Utilities/Utils.cs

+ 1
- 0
IPA.Loader/Utilities/Utils.cs View File

@ -190,6 +190,7 @@ namespace IPA.Utilities
#if NET4
internal static IEnumerable<string> StrJP(this IEnumerable<string> a) => a;
internal static IEnumerable<string> StrJP<T>(this IEnumerable<T> a) => a.Select(o => $"{o}" /* safer than .ToString() */);
#endif
#if NET3
internal static string[] StrJP(this IEnumerable<string> a) => a.ToArray();


Loading…
Cancel
Save