Click here to Skip to main content
15,885,985 members
Articles / Programming Languages / C#

Threading paradigms available under the .NET CLR, using C#

Rate me:
Please Sign up or sign in to vote.
4.76/5 (14 votes)
22 Dec 20047 min read 100K   633   75  
This article discusses the various threading paradigms available under the .NET CLR, using C#.
using System;
using System.Collections;

namespace ManagedThreadCS
{
	/// <summary>
	/// Summary description for Class1.
	/// </summary>
	class CMain
	{
		/// <summary>
		/// The main entry point for the application.
		/// </summary>
		[STAThread]
		static void Main(string[] args)
		{
   // build a test list of identifiers
   ArrayList list ;
   list = BuildDefaultList();
   //list = BuildLargeList();
   Console.WriteLine("List size = {0}", list.Count);
   
   Console.WriteLine("START");
   int startLoop = Environment.TickCount;
   const int MAXCNT = 100;
   for (int x=0; x < MAXCNT; x++)
   {
    int start = Environment.TickCount;
    CGSRMgr mgr = new CGSRMgr(3);
    mgr.SetObligorList(list);
    mgr.ProcessObligorList();
    int end = Environment.TickCount;

    int gsrCount = mgr.GetTotalGSRCount();
    Console.WriteLine ("Total number of GSR records processed = {0}",gsrCount);
    Console.WriteLine ("Total elapse time = {0} ms", end - start);
    //mgr.StreamToFile("csDumpGSR.txt");
   }
   int endLoop = Environment.TickCount;
   Console.WriteLine ("Total average time = {0} ms", (endLoop - startLoop)/MAXCNT);
      
   Console.WriteLine("COMPLETE!!");


   return;	     
		}
  static ArrayList BuildDefaultList()
  {
   const int LISTSIZE = 15;
   ArrayList list = new ArrayList(LISTSIZE);

   int i = 1;
   int k = 10;
   for (int j=1; j<=LISTSIZE; j++)
   {
    if (i % 5 == 0)
    {
     list.Add(i*k);
     i=1;
     k *= 10;
    }
    else
    {
     list.Add(i*k);
     ++i;
    }
   }
   return list;
  }

  static ArrayList BuildLargeList()
  {
   const int LISTSIZE = 250;
   ArrayList list = new ArrayList(LISTSIZE);

   for (int j=1; j<=LISTSIZE; j++)
    list.Add(j*10);

   return list;
  }

	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Engineer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions