/// <summary> /// Parses a uint64. /// </summary> public static bool Value(string str, string match, ref ulong value) { using (FStringUnsafe strUnsafe = new FStringUnsafe(str)) using (FStringUnsafe matchUnsafe = new FStringUnsafe(match)) { return(Native_FParse.Value_UInt64(ref strUnsafe.Array, ref matchUnsafe.Array, ref value)); } }