Tagged Questions

Managed C++ is a now deprecated Microsoft set of deviations from C++, including grammatical and syntactic extensions, keywords and attributes, to bring the C++ syntax and language to the .NET Framework. These extensions allowed C++ code to be targeted to the Common Language Runtime (CLR) in the form of managed code as well as continue to interoperate with native code.

learn more… | top users | synonyms

10
votes
6answers
893 views

The speed of .NET in numerical computing

In my experience, .net is 2 to 3 times slower than native code. (I implemented L-BFGS for multivariate optimization). I have traced the ads on stackoverflow to http://www.centerspace.net/products/ ...
10
votes
6answers
10k views

C++/CLI Converting from System::String^ to std::string

Can someone please post a simple code that would convert System::String^ to C++ std::string ? i.e I just want to assign the value of String^ originalString; to std::string newString;
8
votes
2answers
533 views

What is the difference between Managed C++ and C++/CLI?

What is exactly the difference between the "old" Managed C++ and the "new" C++/CLI?
8
votes
2answers
296 views

Is it possible to determine in which language a .NET Assembly was written ex post facto?

This started as a way to find C++/CLI and Managed C++ assemblies so that all classes internal to them could be tested to ensure all inherited methods were being reimplemented. I would like to add ...
8
votes
1answer
1k views

How do you dispose of an IDisposable in Managed C++

I'm trying to Dispose of an IDisposable object(FileStream^ fs) in managed C++ (.Net 2.0) and am getting the error 'Dispose' : is not a member of 'System::IO::FileStream' It says that I should ...
8
votes
4answers
5k views

EEFileLoadException when using C# classes in C++(win32 app)

For deployment reasons, I am trying to use IJW to wrap a C# assembly in C++ instead of using a COM Callable Wrapper. I've done it on other projects, but on this one, I am getting an ...
7
votes
4answers
240 views

Are there any code analysis tools that will make my job easier?

I have recently inherited a program written in Managed C++ from some guy who just retired. After spending some time digging through it, I can honestly say that at least 95% of it belongs on ...
7
votes
4answers
3k views

How do I call native C++ from C#?

I have a class implemented in C++ that's responsible for the arithmetic computation of the program, and an interface using WPF. I process the input with C# but then how can I use my C++ class? I've ...
6
votes
3answers
289 views

My application is unmanaged. Where do I start introducing managed code?

My whole application (which is rather big, with a 20MB executable) is written in unmanaged C++. Because I can clearly see the advantages in using managed code, I want to start introducing managed code ...
5
votes
2answers
161 views

How can I unit test a managed wrapper around C code?

I will be creating a Managed-C++ wrapper around some C functions to allow its use in other .NET solutions. I'm looking at providing a very minimalist wrapper, something like: Signature in C header: ...
5
votes
1answer
367 views

Is it possible to use boost::serialization with managed class?

We have a lot of native c++ classes that are serialized perfectly using boost::serialization. Now we want to change some of their member fields to property, so we could use them in PropertyGrids. ...
5
votes
3answers
297 views

What's the difference between managed C++ and C#?

The major advantage I see for using C++ instead of C# is compiling to native code, so we get better performance. C# is easier, but compiles to managed code. Why would anyone use managed C++ for? What ...
5
votes
4answers
1k views

C#'s lock() in Managed C++

Does managed C++ have an equivalent to C#'s lock() and VB's SyncLock? If so, how do I use it?
5
votes
4answers
3k 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 they dropped the ball ...
5
votes
12answers
2k views

Learning C++ from scratch in Visual Studio?

I need to get up to speed with C++ quite quickly (I've never used it previously) - is learning through Visual Studio (i.e. Managed C++) going to be any use? Or will I end up learning the extensions ...
5
votes
2answers
466 views

What is the best unit testing tool for a mix of managed and unmanaged C++?

I am going to start implementing some unit tests for a codebase that is a mix of managed and unmanaged C++. Can NUnit hack it with unmanaged code? Is there a better alternative?
5
votes
5answers
3k views

Managed C++ wrappers for legacy C++ libraries

We're looking at writing a .Net-callable wrapper for some legacy C++ libraries using managed C++. It all looks pretty easy. Is there anything we need to watch out for?
5
votes
4answers
3k views

What is the Managed C++ equivalent to the C# using statement

How would one code the following C# code in Managed C++ void Foo() { using (SqlConnection con = new SqlConnection("connectionStringGoesHere")) { //do stuff } } Clarificaton: ...
5
votes
6answers
3k views

Difference between managed c++ and c++

The topics title is actually my question. And the second question is: When do I use what of these two?
4
votes
3answers
81 views

Managed C++ (C++/CLI) vs C#/VB.NET

I have worked extensively with C#, however, I am starting a project where our client wishes all code to be written in C++ rather than C#. This is project will be a mix between managed (.NET 4.0) and ...
4
votes
2answers
59 views

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. I would like to use ...
4
votes
3answers
551 views

Asp.net calling C# layer calling Managed C++ calling Native C++

My project structure is as follow: ASP.NET calling C# layer calling Managed C++ calling Native C++ (i'm trying to avoid using interop so this is why the managed c++ layer) I wrote unit test that ...
4
votes
5answers
2k views

LNK2022 Error When Using /clr

I'm having a problem linking a C++ project in VS2008 when using the /clr compile option. I am getting the following build errors: Class1.obj : error LNK2022: metadata operation failed (8013118D) : ...
4
votes
7answers
379 views

What is a callback? What is it for and how is it implemented in for example C++

I realise this is a newbie question, but as I'm trying to learn C++ I'm stumpling upon this expression "callback" frequently. I've googled it and checked wikipedia, but without finding a good ...
4
votes
4answers
4k views

Why public ref in c++ class definition

First of all I want to make clear that 'm all new to C++, so this might be a simple and somewhat obvious question. In the C++ book I'm reading called C++ Primer, a class is defined by writing: class ...
4
votes
3answers
1k views

understanding String^ in C++ .Net

I remember seeing somewhere there "^" operator is used as a pointer operator in Managed C++ code. Hence "^" should be equivalent to "*" operator right?? Assuming my understanding is right, when I ...
4
votes
2answers
2k views

How to display quick-updating images without large memory allocation?

I've got a WPF application on an ultrasound machine that displays ultrasound images generated in C++ at a speed upwards of 30 frames per second. From what I understand, the normal process for ...
4
votes
1answer
1k views

Managed C++ Assembly Attributes

Is there a way to add assembly attributes to a Managed C++ assembly? IE, specifically in C# in the AssemblyInfo.cs file, you'd typically have something like this: [assembly: AssemblyTitle("Some ...
4
votes
2answers
1k views

Are there any tools for converting Managed C++ to C++/CLI?

We have an old project written using Managed C++ syntax. I would like to propose to the team a reasonably pain-free (I don't mind some level of human interaction, I think I'm realistic in my ...
3
votes
0answers
87 views

Wrapping managed with unmanaged interface

I have an unmanaged library exposing some interfaces. Users can implement interfaces and stick them into the library with their custom implementation. I would like to supply a managed wrapper for ...
3
votes
1answer
161 views

How to use UTF8Encoding in Visual C++

I need to change the below c# code to c++ code. public static byte[] StrToByteArray(string str) { System.Text.UTF8Encoding encoding = new System.Text.UTF8Encoding(); return ...
3
votes
1answer
146 views

c# method in managed c++

I'm creating a c# dll library to scan process memory. I have static method: int searchASCII(int pid, SByte[] text, int pos) { ReadProcessApi RApi = new ReadProcessApi(pid, pos); ...
3
votes
3answers
326 views

Convert from int to int32

I have a bunch of int's in my c++ code that I need to change to int32's. Same with my bool's. What header do I need to include in order to use int32's and bool32's. Also how do I declare these once I ...
3
votes
3answers
755 views

C++/CLI : Why can't I pass Strings by reference?

Why doesn't Microsoft's C++/CLI allow me to pass strings by reference? I received the following error: C3699: '&': cannot use this indirection on type 'System::String'
3
votes
5answers
355 views

Performance of C++ calls to Java code vs C# code

I am exploring a solution at my client where we have to call an API that is available in both C# and Java from our C++ application. We would like this to be a cross platform application (PC & ...
3
votes
1answer
255 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 with /clr and some ...
3
votes
2answers
1k views

Performance differences between P/Invoke and C++ Wrappers

In the process of learning P/Invoke, I asked this previous question: How to P/Invoke when pointers are involved However, I don't quite understand the implications of using P/Invoke in C# over ...
3
votes
1answer
436 views

C++/CLI Finalizers and Operators

In the following example, I get: error C2300: 'UnmanagedClass' : class does not have a finalizer called '!SmartPointer' If I remove the operator->, this error goes away. Could someone explain why ...
3
votes
2answers
3k views

I get LNK2028 when trying to wrap native c++ class using managed c++

trying to wrap a native cpp class using managed c++ class. all looks good but for some reason it wont compile. getting the following linker errors: Error 25 error LNK2028: unresolved token ...
3
votes
1answer
769 views

what is the C++/CLI syntax to subscribe for events?

I'm updating some old Managed C++ code with lines like this: instanceOfEventSource->add_OnMyEvent( new EventSource::MyEventHandlerDelegate(this, MyEventHandlerMethod) ); where EventSource ...
3
votes
4answers
2k views

Binary data in .NET? (C++/CLI)

What's the prefered way to store binary data in .NET? I've tried this: byte data __gc [] = __gc new byte [100]; And got this error: error C2726: '__gc new' may only be used to create an object ...
3
votes
3answers
4k views

_CRT_DEBUGGER_HOOK throws exception

I'm having a problem converting my program from VS2005 to VS2008. When I run the program in VS2008, the application starts up fine but when start playing around with the application it crashes giving ...
3
votes
3answers
2k views

Handling Managed Delegates in Unmanaged code

I know I can get this to technically work but I'd like to implement the cleanest possible solution. Here's the situation: I have a managed library which wraps an unmanaged C-style library. The ...
2
votes
1answer
20 views

How do I add a delegate to event in managed c++ 2010?

I've got following code in c# public class Shedluer { public delegate void TaskCompletedDelegate(ulong taskId); public static event TaskCompletedDelegate OnTaskCompleted; } Here's how I'm ...
2
votes
3answers
114 views

Embedding standard C++ into a .NET application

I want to write an algorithmic library in standard, platform-independent C++. Can I then take the same C++ code and compile it for .NET so that a C# application can use the library? If not, what is ...
2
votes
3answers
96 views

Common managed C++ gotchas

What are some of the most common issues to look out for when writing managed-C++ for the first time after almost exclusively working with unmanaged C++?
2
votes
2answers
101 views

Verify in advance if assembly can be found

My .net program is using an assembly, which should be installed in the GAC. If the assembly is properly installed, it will be loaded as soon as I use it the first time, which is great. If, for ...
2
votes
1answer
184 views

Loading mixed mode assembly from unmanaged code

As the title says i want to call a mixed mode assembly from unmanaged code. To be more precise, i want to load the mixed mode assembly dynamically and then execute some static unmanaged startup code ...
2
votes
1answer
85 views

Trying to get an int value from a String with Enum::Parse

I am working with C++ and .NET 1.1, and need to parse String values into their corresponding int values from an enumerator. I have an enumerator __value static enum myEnum { VALUE1, VALUE2, ...
2
votes
5answers
218 views

C++/CLI Community

Sort of curious as to how many people actually use C++/CLI? So how many people are using it? Are there specific jobs that people are only looking for programmers under a managed environment? How big ...

1 2 3 4 5