Why we need CLR Hosting? Can I do CLR Hosting using C#? If yes then please give an example.
Asked
Active
Viewed 216 times
-6
-
Partial duplicate: http://stackoverflow.com/questions/2348207/what-is-clr-hosting – roken Jun 19 '12 at 12:13
1 Answers
6
CLR hosting is when you have a native application which wants to run the CLR within the same process. It makes no sense to talk about CLR hosting using C#, as you're already running the CLR if you're running C# code (beyond some very strange situations).
Basically, if you need to ask about it, you almost certainly don't need to do it.

Jon Skeet
- 1,421,763
- 867
- 9,128
- 9,194