PKHeX/PKHeX.Core/Util/NetFramework/System.cs
Kurt d13488f517 Split FrameworkUtil into separate extension classes
Adds bigendian float/double logic
2022-07-06 17:30:14 -07:00

8 lines
177 B
C#

#if !NET6
namespace System;
public static class FutureFeatures
{
public static bool StartsWith(this string str, char value) => str.Length != 0 && str[0] == value;
}
#endif