Beispiel #1
0
        public static bool TryParse(string?value, IFormatProvider formatProvider, out TryParseStringRecord?result)
        {
            if (!int.TryParse(value, NumberStyles.Integer, formatProvider, out var val))
            {
                result = null;
                return(false);
            }

            result = new TryParseStringRecord(val);
            return(true);
        }
Beispiel #2
0
 private static void TryParseStringRecordMethod(TryParseStringRecord arg)
 {
 }