c# – 如何加快从字符串中删除文本的方法?

前端之家收集整理的这篇文章主要介绍了c# – 如何加快从字符串中删除文本的方法?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我编写了以下方法来从字符串中删除括号中的命名空间.

我想尽快做到这一点.

有没有办法加快以下代码

using System;

namespace TestRemoveFast
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] tests = {
            "{http://company.com/Services/Types}ModifiedAt","{http://company.com/Services/Types}CreatedAt"
                             };

            foreach (var test in tests)
            {
                Console.WriteLine(Clean(test));
            }

            Console.ReadLine();
        }

        static string Clean(string line)
        {
            int pos = line.IndexOf('}');
            if (pos > 0)
                return line.Substring(pos + 1,line.Length - pos - 1);
            else
                return line;
        }
    }
}

解决方法

您可以尝试并行性,因为它看起来不像您需要同步处理.与PLINQ平行的foreach可以解决这个问题.

但如果你不能等到VS2010正式退出,你可以试试Poor Man’s Parallel.ForEach Iterator by Emre Aydinceren

原文链接:https://www.f2er.com/csharp/92150.html

猜你在找的C#相关文章