clr-hosting Questions
2
Solved
My project references Library1.dll and Library2.dll. Library2.dll has a dependency on Library1.dll, but it was compiled to reference it by a different name, Library1.Net40.dll.
Is there an nice way...
Zoospore asked 24/11, 2010 at 1:5
2
As Microsoft Documentation declare Runtime Hosts that .NET have more than one Runtime Hosts to support and execute the code of our application, my question is How Can I know which Runtime Hosts of ...
Sharonsharona asked 11/6, 2013 at 9:1
3
Solved
What is CLR hosting? What is the use case for that?
Capernaum asked 27/2, 2010 at 17:10
1
I need to host the .NET runtime in an unmanaged process. I have code that works to load the runtime via COM and I can load assemblies into the AppDomain and execute code just fine.
However, I run ...
Abdullah asked 2/2, 2011 at 16:33
1
Solved
I need to take a C++ program, load CLR and call a function in a C# library. The function I need to call takes in a COM interface as the parameter.
My problem is, the CLR hosting interface only see...
Ilona asked 6/3, 2012 at 20:44
4
Solved
I am trying to write an plugin system that can load managed plugins. The host should be able to unload the plugins if there are any exceptions.
for my poc I have a sample code library in C# that t...
Practicable asked 25/10, 2011 at 21:35
1
Solved
I have following appDomainManager code
public class HostAppDomainManager : AppDomainManager
{
public override void InitializeNewDomain(AppDomainSetup appDomainInfo)
{
this.InitializationFlags =...
Cheryle asked 26/10, 2011 at 22:20
1
Solved
I'm trying to convert mscorlib.tlb.
It normally used in C++ like this:
#import "mscorlib.tlb" raw_interfaces_only \
high_property_prefixes("_get","_put","_putref") \
rename("ReportEvent", "Inter...
Foiled asked 23/6, 2011 at 22:12
1
The issue:
An unhandled exception in a thread entering the CLR from unmanaged code does not trigger the "normal" unhandled exception CLR processing.
In the code below calling CSSimpleObject.Getst...
Gurnard asked 25/5, 2011 at 12:43
3
Solved
There are two scenarios I need to clarify:
An executable compiled with .NET 3.5 needs to use a library compiled with .NET 1.1 and the library must run on the 1.1 runtime.
An executable compiled w...
Infatuate asked 14/10, 2008 at 15:32
1
Solved
Every example I can find is in C++, but I'm trying to keep my project in C. Is it even possible to host the CLR in a C program?
If so, can you point me to an example?
Putrid asked 29/8, 2009 at 2:6
2
Solved
How does Excel VSTO Work? If I create an Excel Workbook solution in Visual Studio 2005 I can then happily code away with full access to the Excel object model and even treat the Excel sheet as a de...
Pendragon asked 11/2, 2009 at 9:43
1
Solved
I'm trying to host the CLR inside my C++ application and I'm having problems invoking the entry point of the managed application.
The entry point is defined as usual:
static void Main(string[] arg...
Decompound asked 2/12, 2008 at 19:11
1
© 2022 - 2024 — McMap. All rights reserved.