mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-25 23:20:03 -05: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
|