/// <summary> /// 是否全部由0-9数字的数字组成 /// </summary> public static bool IsDigit(this String source) { return(StringHelper.IsDigit(source)); }