|
|||
|
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. |
| Sponsored Links |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| comp.lang.c Answers to Frequently Asked Questions (FAQ List) | Steve Summit | Tech FAQ | 0 | 11-01-2005 07:00 AM |
| comp.lang.c Answers to Frequently Asked Questions (FAQ List) | Steve Summit | Tech FAQ | 0 | 08-01-2004 07:00 AM |
| comp.lang.c Answers to Frequently Asked Questions (FAQ List) | Steve Summit | Tech FAQ | 0 | 07-03-2004 08:27 PM |