Logo 
Search:

.Net Framework Interview FAQs

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

How does .NET remoting work?

NET remoting involves sending messages along channels. Two of the standard channels are HTTP and TCP. TCP is intended for LANs only - HTTP can be used for LANs or WANs (internet).

Support is provided for multiple message serializarion formats. Exa...
Posted By:Luigi Fischer      Posted On: Sep 17

.Net Framework
Comments: 0

How can I get at the Win32 API from a .NET program?

Use P/Invoke. This uses similar technology to COM Interop, but is used to access static DLL entry points instead of COM objects. Here is an example of C# calling the Win32 MessageBox function:

using System;
using System.Runtime.InteropSe...
Posted By:Latasha Wilson      Posted On: Mar 04

.Net Framework
Comments: 0

How do I write to the application configuration file at runtime?

You don't. See www.interact-sw.co.uk/.../savingconfig.
Posted By:Ora Hanson      Posted On: Feb 02

.Net Framework
Comments: 0

What is the difference between an event and a delegate?

An event is just a wrapper for a multicast delegate. Adding a public event to a class is almost the same as adding a public multicast delegate field. In both cases, subscriber objects can register for notifications, and in both cases the publisher ob...
Posted By:Angel Watkins      Posted On: Sep 22

.Net Framework
Comments: 0

What size is a .NET object?

Each instance of a reference type has two fields maintained by the runtime - a method table pointer and a sync block. These are 4 bytes each on a 32-bit system, making a total of 8 bytes per object overhead. Obviously the instance data for the type m...
Posted By:Burkett Bernard      Posted On: Jan 14

.Net Framework
Comments: 0

Will my .NET app run on 64-bit Windows?

64-bit (x64) versions of Windows support both 32-bit and 64-bit processes, and corresponding 32-bit and 64-bit versions of .NET 2.0. (.NET 1.1 is 32-bit only).

.NET 1.x apps automatically run as 32-bit processes on 64-bit Windows.

.NET 2.0 apps...
Posted By:Perdita Lopez      Posted On: Oct 17

  7  8  9  10  11  12  13