.NET Runtime instances

  • Thread starter Thread starter Paul Basin
  • Start date Start date
P

Paul Basin

Hello,

I have a question about .NET runtime... Can there be
multiple instances of the .NET runtime running on a
machine? OR is it one OS - one runtime?

Thanks!
 
Paul said:
Hello,

I have a question about .NET runtime... Can there be
multiple instances of the .NET runtime running on a
machine? OR is it one OS - one runtime?

Thanks!

The runtime is not a separate process. When you start a .NET process the
runtime is loaded into that process. (For pre-XP systems its exactly that
case - the process is created and the runtime is loaded, which opens a small
security hole when the runtime is not running, for XP the system starts the
runtime with the runtime already loaded.)

Richard
 
Paul,
I have a question about .NET runtime... Can there be
multiple instances of the .NET runtime running on a
machine? OR is it one OS - one runtime?

You can have multiple versions of the CLR installed and running.



Mattias
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top