コード例 #1
0
ファイル: FPUtils.cs プロジェクト: Run2948/FangPageExam
        // Token: 0x060000E2 RID: 226 RVA: 0x0000AEC8 File Offset: 0x000090C8
        public static bool IsNumericArray(string strNumber)
        {
            bool result;

            if (strNumber == null)
            {
                result = false;
            }
            else if (strNumber.Length < 1)
            {
                result = false;
            }
            else
            {
                foreach (string expression in strNumber.Split(new char[]
                {
                    ','
                }))
                {
                    if (!FPUtils.IsNumeric(expression))
                    {
                        return(false);
                    }
                }
                result = true;
            }
            return(result);
        }