I am developing windows form application in C++. I want to run different .exe files from different folders. For example, if the application is in Folder1, I want to run some .exe files from Folder2. I
I have inproc com-server (dll) implemented within MSVS 2010. Client is pretty simple: static void Main()
I want to write an algorithmic library in standard, platform-independent C++. Can I then开发者_StackOverflow中文版 take the same C++ code and compile it for .NET so that a C# application can use the
I know nesting of namespaces is allowed in C++/CLI. So my question is if we have something like this:
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 exampl
I am developing a managed lib (using Microsoft Web Services) and I am including it into a c++ project. The project doesn\'t use /clr option,
How memory is managed for C# objects when C++ code uses as C# class? NOTE: I am not specific in this question 开发者_如何转开发but just wondering how it is done.It works exactly the same... objects
I am working with C++ and .NET 1.1, and need to parse String values into their corresponding int values from an enumerator.
And is it possible to cast the array< Byte>^ to an byte*? how would the below code need to changed to return a byte*?
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();