mirror of
https://github.com/kwsch/PKHeX
synced 2025-01-14 05:23:58 +00:00
d13488f517
Adds bigendian float/double logic
8 lines
177 B
C#
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
|