Logo 
Search:

.Net Framework Interview FAQs

Submit Interview FAQ
Home » Interview FAQs » .Net FrameworkRSS Feeds
.Net Framework
Comments: 0

Can I use .NET components from COM programs?

Yes. .NET components are accessed from COM via a COM Callable Wrapper (CCW). This is similar to a RCW (see previous question), but works in the opposite direction. Again, if the wrapper cannot be automatically generated by the .NET development tools,...
Posted By:Bonifaco Garcia      Posted On: Dec 15

.Net Framework
Comments: 0

Is ATL redundant in the .NET world?

Yes. ATL will continue to be valuable for writing COM components for some time, but it has no place in the .NET world.
Posted By:Estella Mitchell      Posted On: Feb 07

.Net Framework
Comments: 0

How do I spawn a thread?

Create an instance of a System.Threading.Thread object, passing it an instance of a ThreadStart delegate that will be executed on the new thread. For example:

class MyThread
{
public MyThread( string initData )
{
...
Posted By:Felicia Hill      Posted On: Mar 02

.Net Framework
Comments: 0

How do I stop a thread?

There are several options. First, you can use your own communication mechanism to tell the ThreadStart method to finish. Alternatively the Thread class has in-built support for instructing the thread to stop. The two principle methods are Thread.Inte...
Posted By:Corinne Rogers      Posted On: Nov 06

.Net Framework
Comments: 0

How do I use the thread pool?

By passing an instance of a WaitCallback delegate to the ThreadPool.QueueUserWorkItem() method

class CApp
{
static void Main()
{
string s = "Hello, World";
ThreadPool.QueueUserWorkItem( new Wait...
Posted By:Agatha Miller      Posted On: Jan 16

.Net Framework
Comments: 0

How do I know when my thread pool work item has completed?

There is no way to query the thread pool for this information. You must put code into the WaitCallback method to signal that it has completed. Events are useful for this.
Posted By:Sonya Flores      Posted On: Nov 20

  5  6  7  8  9  10  11  12  13