ASP.Net Interview Questions and Answers – Part6
51. How do you create threading in.NET? What is the namespace for that? System.Threading; //create new thread using the thread class’s constructor Thread myThread = new Thread(new ThreadStart (someFunction)); 52. What do you mean by Serialize and MarshalByRef? Serialization is the act of saving the state of an object so that it can be recreated
more..