fqc
lu
2025-04-11 ad76617fb57542f92350f84a33b0c2cf63f69383
DevApp/Gs.DevApp/ToolBox/UtilityHelper.cs
@@ -2025,7 +2025,13 @@
            Regex regex = new Regex("^[0-9]+$");
            return regex.IsMatch(str);
        }
        public static bool IsNumeric2(string str)
        {
            string input = str;
            decimal number;
            bool isNumeric = decimal.TryParse(input, out number);
            return isNumeric;
        }
    }
    /// <summary>