
- Forum
- Career Management
- Interview Questions
- Dot Net questions
Dot Net questions
This is a discussion on Dot Net questions within the Interview Questions forums, part of the Career Management category; Contributed by shankar raman Early & Late Binding: --------------------- - Early binding is to know the type of an object ...
-
Dot Net questions
Contributed by shankar raman
Early & Late Binding:
---------------------
- Early binding is to know the type of an object at compile time. The
compiler have all the needed element at compile time to build the call into the excutable code (resolution of calls at compile time)
- With late binding, the type of an object is known only at runtime. It will need extra instructions to find out where is the method to be called (if it exists) before calling it (resolution of calls at runtime)
U can also go to foll link for details n an example.
http://msdn.microsoft.com/library/de...ateBinding.asp
Application Domain :
--------------------
The logical and physical boundary created around every .NET application by the Common Language Runtime (CLR). The CLR can allow multiple .NET applications to be run in a single process by loading them into separate application domains. The CLR isolates each application domain from all other application domains and prevents the configuration, security, or stability of a running .NET applications from affecting other applications. Objects can only be moved between application domains by the use of remoting.
U can also go to foll link for details n an example.
http://msdn.microsoft.com/library/de...omainhosts.asp
Process:
--------
A process, in the simplest terms, is a running application. A thread is the basic unit to which the operating system allocates processor time for a process.
Remoting:
---------
A .NET technology that allows objects residing in different application domains to communicate. Objects in different application domains are said to be separated by a remoting boundary. Objects using remoting may be on the same computer, or on different computers connected by a network. Remoting is the .NET replacement for DCOM.
With Regards,
Shankara Raman S.
-
hi.. your post is quite informative.. but im having problems with the link that you gave to us.. it wont load..
are you sure its working?
im using mozilla suite 1.7.0
please help me.. it might be helpful..
thanks

Reply With Quote





