managed-c++
How should I write my lib in C++ for use in .NET?
I have a prototype for a lib written in C++. It is CPU intensive so I wrote one part in C (because of tools) the meat in C++ and used custom memory allocators and various things.[详细]
2023-04-12 18:36 分类:问答how to unload managed c++ dll?
A.dll is a native c++ dll, B.dll is a managed c++ dll. A.dll depends on B.dll, so when load A.dll, B.dll is loaded automatically, but a开发者_开发问答fter A.dll is unloaded, B.dll is still loaded. Onl[详细]
2023-04-11 20:53 分类:问答Signing mixed code assembly
I have a mixed assambly written in C++ managed and unmanaged. To sign this assembly I use delayed signing with the following Post-build event:[详细]
2023-04-09 01:10 分类:问答Cross Threading between UI and Background Thread
I\'ve written a program that allo开发者_如何学运维ws the user interface thread to access a populated array at almost any time. This array is populated by a separate background worker thread within an[详细]
2023-04-06 21:51 分类:问答Exposing unmanaged types in managed code
I have two unmanaged clas开发者_开发问答ses, in two different DLLs: class A { public: void doSomething();[详细]
2023-04-05 05:03 分类:问答Pass 128 bits from managed C++ to C#
I have a function in a managed C++ DLL that needs to pass 128 bits back to C#.I have found quite a bit on the subject calling unmanaged C++ from C# but not so much about managed to managed calls.[详细]
2023-04-01 15:10 分类:问答managed c++ code doesn't find function implementation
I have 3 files: main \".h\" file - contains implementation of a simple WinForm (managed c++) fold/file.h[详细]
2023-03-28 11:54 分类:问答Unmanaged code calling causes a WCF process to crash [closed]
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time,or an extraordinarily narrow situation that is not generally applic[详细]
2023-03-28 10:53 分类:问答Loading Mixed-Mode C++/CLI .dll (and dependencies) dynamically from unmanaged c++
I have a managed C++ assembly I\'m loading dynamically in an unmanaged c++ application through a standard LoadLibrary(开发者_StackOverflow) call. The managed C++ assembly has dependencies on several m[详细]
2023-03-27 18:46 分类:问答Change Default Integer Value Of C++ Dictionary TryGetValue() Method?
Quick question which I fear has a short and disappointing answer but alas I shall ask anyway.. In the C++ Dictionary method TryGetValue() is there any way to change the defaul开发者_运维知识库t value[详细]
2023-03-23 12:25 分类:问答