Questions tagged [managed]

Managed refers to code that requires and will only execute under the control of a Common Language Runtime (CLR). Any code written in C# or Visual Basic .NET is managed code.

890 questions
-2
votes
2 answers

initializing a 100 point array

quote from other post: Call Graphics.FillPolygon(). You will need a brush rather than a pen and you must put your points into a point array Point[]. The sample code from MSDN is like this: // Create solid brush. SolidBrush^ blueBrush = gcnew…
Sassinak
  • 95
  • 2
  • 12
-3
votes
1 answer

How to return managed this pointer

This is probably a simple noob user-error, And I feel dumb not figuring this out myself. I have some old unmanaged code that I need to convert to managed c++ .net, because I want to Serialize the objects. My question is not about serialization…
-3
votes
1 answer

How to expose native to managed - C++/CLI on x64 Platform

I have a static lib in my project and I want to use this in my .net project. I have taken this project as a starting point. Exposing native to managed - C++/CLI My use case is the Second Approach. So far everything works, but when I change the…
Diddlik
  • 76
  • 1
  • 9
-3
votes
1 answer

Use C++ managed Form from unmanaged C++ project

please I need your help, I googled a lot and any answer for this problem.... I have a solution that includes various Unmanaged C++ projects, but now I need to use a Visual C++ Form (that is Managed) into the main unmanaged project, and comunicate…
jromeror
  • 100
  • 12
1 2 3
59
60