码迷,mamicode.com
首页 > 其他好文 > 详细

C# Parallel类的作用

时间:2014-05-10 08:59:10      阅读:302      评论:0      收藏:0      [点我收藏+]

标签:c# parallel类的作用   parallel   c#   

System.Threading.Tasks.Parallel是能够以并行的方式迭代数据集合(实现了IEnumerable<T>的对象),它主要提供2个方法:For()和ForEach()

事例:

using System;
using System.Collections.Generic;
using System.Threading.Tasks;

namespace Net.ConsoleApplication
{
    public class Student
    {
        public string id { get; set; }
        public string name { get; set; }
    }
    public class ParallelDemo
    {
        private List<Student> list = new List<Student>();

        public ParallelDemo()
        {
            for (int i = 0; i < 1000;i++ )
            {
                Student s = new Student();
                s.id = i.ToString("00000");
                s.name = "编号" + s.id;
                list.Add(s);
            }
        }

        public void Do()
        {
            Parallel.ForEach(list, stu => {
                System.Console.WriteLine("id: " + stu.id + ",name: " + stu.name);
            });
        }

    }
}

 

C# Parallel类的作用,布布扣,bubuko.com

C# Parallel类的作用

标签:c# parallel类的作用   parallel   c#   

原文地址:http://blog.csdn.net/y_f123/article/details/25454433

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!