Logo 
Search:

.Net Framework Interview FAQs

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

Can I write IL programs directly?

Yes. Peter Drayton posted this simple example to the DOTNET mailing list:

.assembly MyAssembly {}
.class MyApp {
.method static void Main() {
.entrypoint
ldstr "Hello, IL!"
call void System.Con...
Posted By:Topaz Ramirez      Posted On: Sep 20

.Net Framework
Comments: 0

Can I do things in IL that I can't do in C#?

Yes. A couple of simple examples are that you can throw exceptions that are not derived from System.Exception, and you can have non-zero-based arrays.
Posted By:Angie Bennett      Posted On: Dec 07

.Net Framework
Comments: 0

Does .NET replace COM?

This subject causes a lot of controversy, as you'll see if you read the mailing list archives. Take a look at the following two threads:

discuss.develop.com/.../wa.exe
discuss.develop.com/.../wa.exe

The bottom line is that .NET has its own mec...
Posted By:Ray Lawrence      Posted On: Nov 24

.Net Framework
Comments: 0

Is DCOM dead?

Pretty much, for .NET developers. The .NET Framework has a new remoting model which is not based on DCOM. DCOM was pretty much dead anyway, once firewalls became widespread and Microsoft got SOAP fever. Of course DCOM will still be used in interop sc...
Posted By:Chad Bradley      Posted On: Nov 29

.Net Framework
Comments: 0

Is COM+ dead?

Not immediately. The approach for .NET 1.0 was to provide access to the existing COM+ services (through an interop layer) rather than replace the services with native .NET ones. Various tools and attributes were provided to make this as painless as p...
Posted By:Laurel Collins      Posted On: Mar 14

.Net Framework
Comments: 0

Can I use COM components from .NET programs?

Yes. COM components are accessed from the .NET runtime via a Runtime Callable Wrapper (RCW). This wrapper turns the COM interfaces exposed by the COM component into .NET-compatible interfaces. For oleautomation interfaces, the RCW can be generated au...
Posted By:Orville Rodriguez      Posted On: Sep 21

  4  5  6  7  8  9  10  11  12  13