2
votes
2answers
68 views
Exposing unmanaged const static std::string in a managed C++ class
I have a non-.NET C++ class as follows:
Foo.h:
namespace foo {
const static std::string FOO;
...
}
Foo.cc:
using namespace foo;
const std::string FOO = "foo";
I want to …
0
votes
2answers
24 views
Creating 64 bit CLR C++ projects in VS2008
I am creating a wrapper around a native lib, which comes in both 32 & 64 bit flavors. I have a fairly complex C++/CLR project that includes a number of header files from the na …
0
votes
1answer
55 views
Visual Studio 8: Build Times in mixed-mode assemblies.
I have an C++/CLI assembly consisting of approximately 50 source files. The code in this assembly links statically to a number of C++ libraries to do various 'heavy-lifiting' type …
0
votes
1answer
30 views
Managed C++ internal class?
Is there a may to make a managed C++ class "internal"? I.E. What is the equivalent of "internal class" in managed C++?
0
votes
3answers
103 views
Dynamic Memory Allocation in C++
What is the difference between the 'delete' and 'dispose' C++ operators with regards to dynamic memory allocation?
-1
votes
0answers
8 views
dynamic binding
create a stack class of geometric shapes. write routines to push and pop any shape into the stack. user must be able to display the contents of the stack. define a function total i …
1
vote
1answer
46 views
Windows Forms Timer bug or bad use?
When programming a small OpenGL application using Windows Forms, I discovered something using a profiler that I thought was pretty wonky.
I'm using a System::Windows::Forms::Timer …
1
vote
0answers
30 views
Clutter in mixed C++/CLI assemblies
Is there any way to hide native placeholder definitions from the managed metadata (visible in Reflector)?
I'm creating a mixed-mode C++/CLI assembly containing some files compiled …
0
votes
2answers
59 views
How do I call Foo(long[][]) (C#) from Managed C++ (old syntax)?
I've got existing C# code with signature of Foo(long[][] longs) which I need to call from Unmanaged C++ (not C++/CLI). I just can't seem to figure out the right combination of __g …
5
votes
4answers
205 views
Why doesn’t WPF support C++.NET - the way WinForms does?
As a C++ stickler, this has really been bugging me. I've always liked the idea of the "language-independant framework" that Microsoft came up with roughly a decade ago. Why have th …
0
votes
0answers
124 views
Why is unmanaged exception call stack is missing relevant information when caught in managed code?
I have an application that consists of managed and unmanaged
DLLs. My managed DLL is a C++/CLR DLL that is used to access
a native C++ DLL. When code crosses from managed to native …
0
votes
1answer
40 views
How do I use Ruby 1.9 with Managed C++?
I'm trying to create a dot net library to use ruby, for the sake of this, I'm linking
ruby's static library but I'm getting some LNK error.
I'm using Visual Studio 2008, thanks in …
2
votes
2answers
84 views
Cleanest Method for copying Native DLLs in a .NET Project
I have a C# GUI application that references a Managed C++ project, which requires 7 native C++ DLLs. I'm looking for the cleanest method for copying these 7 DLLs to the final proje …
1
vote
1answer
76 views
Array of Objects/Classes fails for user defined Class
Hello,
I am hoping someone with some more C++ knowledge might be able to help me. I am trying to create an array of objects in C# from a Class I've created in a Managed C++ DLL. I …
1
vote
2answers
135 views
how do you call a managed (c#) function from c++?
I have a c# dll project (my_cs_dll.dll) which defines a static class with a static member function.
namespace Foo
{
public static class Bar
{
public static double …
