Current Thread Properties : Thread Properties « Thread « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# Book
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Thread » Thread PropertiesScreenshots 
Current Thread Properties
 

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;

class Program {
    static int interval;
    static void Main(string[] args) {
        interval = 100;

        ThreadPool.QueueUserWorkItem(new WaitCallback(StartMethod));
        Thread.Sleep(100);
        ThreadPool.QueueUserWorkItem(new WaitCallback(StartMethod));
        Console.ReadLine();

    }

    static void StartMethod(Object stateInfo) {
        DisplayNumbers("Thread " + DateTime.Now.Millisecond.ToString());
        Console.WriteLine("Thread Finished");
    }

    static void DisplayNumbers(string GivenThreadName) {
        Console.WriteLine("Starting thread: " + GivenThreadName);

        for (int i = 1; i <= * interval; i++) {
            if (i % interval == 0) {
                Console.WriteLine("Count has reached " + i);
                Console.WriteLine("CurrentCulture: " + Thread.CurrentThread.CurrentCulture.ToString());
                Console.WriteLine("IsThreadPoolThread: " + Thread.CurrentThread.IsThreadPoolThread.ToString());
                Console.WriteLine("ManagedThreadId: " + Thread.CurrentThread.ManagedThreadId.ToString());
                Console.WriteLine("Priority: " + Thread.CurrentThread.Priority.ToString());
                Console.WriteLine("ThreadState: " + Thread.CurrentThread.ThreadState.ToString());
                Thread.Sleep(1000);
            }
        }
    }
}

 
Related examples in the same category
1.illustrates the use of thread prioritiesillustrates the use of thread priorities
2.illustrates the ThreadState propertyillustrates the ThreadState property
3.Use IsAlive to wait for threads to end
4.Demonstrate thread prioritiesDemonstrate thread priorities
w___w__w_.___j_ava__2___s.___c__o__m_ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.