Stopwatch w = new Stopwatch();
           w.Start();
           Regex r 
= new Regex(@".*", RegexOptions.Compiled );
             Match m 
= r.Match("aaa");
             
if (m.Success)
             {
                 w.Stop();
                 Response.Write(w.Elapsed.TotalSeconds.ToString(
"0.0000000"));
              
             }

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-10
  • 2021-04-26
  • 2021-12-29
  • 2022-02-13
  • 2021-08-26
猜你喜欢
  • 2021-10-24
  • 2022-12-23
  • 2021-05-22
  • 2021-06-21
  • 2021-09-14
  • 2022-02-24
相关资源
相似解决方案