我已经弄清楚如何执行支票,但我不知道如何计算工作号码中的数字.
非常感谢你的帮助.
var count = jobId.Count(x => Char.IsDigit(x));
要么
var count = jobId.Count(Char.IsDigit);