mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2025-02-09 13:14:46 +01:00
15 lines
274 B
C#
15 lines
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 |