相关疑难解决方法(0)

什么是一些好的.NET Profilers?

您在使用.net程序时使用了哪些分析器,您会特别推荐哪些?

.net c# profiler profiling

374
推荐指数
12
解决办法
31万
查看次数

字母数字仅限数字

寻找快速/有效的方法将字母数字转换为仅数字字符串

例如+ 123-456/7890变为1234567890等.

现有的代码是

foreach(char c in str.ToCharArray() )
  if ( char.IsDigit(c) ) stringBuilder.Append(c);

return stringBuilder.ToString();
Run Code Online (Sandbox Code Playgroud)

.net c#

9
推荐指数
1
解决办法
3422
查看次数

标签 统计

.net ×2

c# ×2

profiler ×1

profiling ×1