mirror of
https://github.com/kwsch/PKHeX
synced 2025-01-28 04:05:05 +00:00
9 lines
177 B
C#
9 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
|