mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
15 lines
No EOL
274 B
C#
15 lines
No EOL
274 B
C#
#if NETCORE
|
|
using System.Globalization;
|
|
|
|
namespace DiscUtils.CoreCompat
|
|
{
|
|
internal static class StringExtensions
|
|
{
|
|
public static string ToUpper(this string value, CultureInfo culture)
|
|
{
|
|
return value.ToUpper();
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif |