Technical Interview Questions & Answers

Collection and sharing of, interview questions and answers asked in various interviews, faqs and articles.....

what are different thread states?

›
Running The thread has been started, it is not blocked, and there is no pending ThreadAbortException. StopRequested The thread is being ...

C# Sample code: starts a worker thread, and a Timer

›
using System; using System.Threading; namespace CallBacks {    class Program    {        private string message;        private static...

C# small program with a main thread and 2 worker threads

›
using System; using System.Threading; namespace StartingThreads {    class Program    {        static void Main(string[] args)        ...

Starting Threads [Code Sample]

›
Starting new Threads is pretty easy, we just need to use one of the Thread constructors, such as Thread(ThreadStart) Thread(ParameterizedThr...

how to execute code in a specific AppDomain

›
using System; using System.Threading; namespace LoadNewAppDomain {    class Program    {        static void Main(string[] args)       ...
‹
›
Home
View web version
Powered by Blogger.