Tagged Questions

C++/CLI is an extension of the C++ programming language. It extends the syntax to allow compilation of a mixture of native code and code for Microsoft's Common Language Infrastructure (CLI). It is a replacement for Microsoft's now deprecated Managed Extensions for C++.

learn more… | top users | synonyms (1)

35
votes
4answers
8k views

Change C++/CLI project to another framework than 4.0 with vs2010

Since I upgraded my project to visual studio 2010 project format, my C++/CLI project is targeted to .net framework 4.0. It is easy to switch the framework version to another version from a C# ...
26
votes
11answers
4k views

Why C# is not allowing non-member functions like C++

C# will not allow to write non-member functions and every method should be part of a class. I was thinking this as a restriction in all CLI languages. But I was wrong and I found that C++/CLI supports ...
18
votes
2answers
702 views

How can I get close to non-nullable types in C# today?

I've read many of the non-nullable questions and answers. It looks like the best way to get close to non-nullable types in C# (4.0) is Jon Skeet's NonNullable<> hack. However, it seems that ...
15
votes
3answers
540 views

How to connect to a WCF service with Custom Binding from unmanaged C++

I need to connect to a WCF service from a native C++ application. I tried the link below and it worked with wsHttpBinding. Create WCF service for unmanaged C++ clients However I need to connect ...
15
votes
2answers
355 views

Why can C# not automatically provide thread-safe access to events, where C++/CLI can?

From the MSDN documentation for EventHandler Delegate: In contrast to the C# and Visual Basic examples, the Visual C++ example code does not require you to create a thread-safe temporary ...
15
votes
6answers
19k views

No IntelliSense for c++/cli in visual studio 2010?

I just moved from Visual Studio 2008 to 2010 (final), and noticed one major flaw: When I try to use AutoComplete in a C++ Source file for managed c++, a small note in the footer appers: intellisense ...
14
votes
6answers
7k views

What does the caret mean in C++/CLI?

I just came across this code and a few Google searches turn up no explanation of this mysterious (to me) syntax. Hashtable^ tempHash = gcnew Hashtable(iterators_); IDictionaryEnumerator^ enumerator ...
13
votes
5answers
689 views

Why it is called Marshalling? [closed]

Possible Duplicate: Why is the concept of Marshalling called as such? Why the conversion between two types is called Marshalling! What is the meaning behind Marshal, why we don't just use ...
13
votes
5answers
5k views

Why is “array” a reserved word in C/C++?

Visual Studio syntax highlighting colors this word blue as if it were a keyword or reserved word. I tried searching online for it but the word "array" throws the search off, I get mostly pages ...
12
votes
2answers
1k views

this == null // How can it be possible?

Recently I came across some strange behaviour of my application. It has been developed mainly in C# but CLI/C++ was also used to achieve better performance. I was getting a ...
12
votes
8answers
2k views

Is C++ .NET dying?

I heard somewhere that Microsoft will be focusing their efforts on C# rather than C++ for the .NET platform. I can see signs of this being true because of the GUI designer that was available for C# ...
11
votes
5answers
602 views

Is C++ CLI a superset of C++?

Would a C++ CLI compiler be able to compile some large sets of C++ classes without modifications? Is C++ CLI a superset of C++?
11
votes
4answers
13k views

What is the best way to convert between char* and System::String in C++/CLI

What is the approved way to convert from char* to System::string and back in C++/CLI? I found a few references to marshal_to<> templated functions on Google, but it appears that this feature never ...
10
votes
3answers
8k views

Calling C# from C++, Reverse P/Invoke, Mixed Mode DLLs and C++/CLI

As I understand it I can use reverse P/Invoke to call C# from C++. Reverse P/Invoke is simply a case of: Create you managed (c#) class. Create a c++/cli (formerly managed c++) class library ...
10
votes
5answers
2k views

Documenting C++/CLI library code for use from c# - best tools and practices?

I'm working on a project where a c++/cli library is being used primarily from a c# application. Is there any way to make the code comments in c++/cli visible to c# intellisence within visual studio? ...
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;
10
votes
3answers
6k views

In C++/CLI, how do I declare and call a function with an 'out' parameter?

I have a function which parses one string into two strings. In C# I would declare it like this: void ParseQuery(string toParse, out string search, out string sort) { ... } and I'd call it like ...
10
votes
6answers
5k views

Does Mono .NET support and compile C++ / CLI?

Does Mono .NET support and compile C++ / CLI? If not, do you know if they have any plans of supporting it?
10
votes
8answers
1k views

Do you recommend Native C++ to C++\CLI shift?

I have been working as a native C++ programmer for last few years. Now we are starting a new project from the scratch. So what is your thoughts on shifting to C++\CLI at the cost of loosing platform ...
10
votes
7answers
12k views

How to get the application executable name in Windows (C++ Win32 or C++/CLI)?

I need to change the functionality of an application based on the executable name. Nothing huge, just changing strings that are displayed and some internal identifiers. The application is written in a ...
9
votes
1answer
678 views

error MSB3171: Problem generating manifest

C:\WINDOWS\Microsoft.NET\Framework\v3.5\Microsoft.Common.targets(2341,9): error MSB3171: Problem generating manifest. Could not load file or assembly '...CppCli.dll.manifest' or one of its ...
9
votes
4answers
313 views

C++CLI. Does the native parts written in pure C++ but compiled in CLI are as fast as pure native C++?

I want to delegate audio computing to a C++ layer, but handle and edit it through a luxurious WPF GUI. I have had a brief look at C++/CLI, and I wanted to know if I should use C++/CLI as an ...
9
votes
5answers
720 views

What is the “^” symbol in C++?

Has a new symbol joined the C++ language specification while I was sleeping under a rock? I just encountered the following question: ...
9
votes
3answers
2k views

Is there an easy way to sign a C++ CLI assembly in VS 2010?

Right now I am setting the Linker/Advanced/KeyFile option. I am getting the "mt.exe : general warning 810100b3: is a strong-name signed assembly and embedding a manifest invalidates the signature. ...
9
votes
6answers
1k views

P/Invoke or C++/CLI for wrapping a C library

Have a moderate size (40-odd function) C API that needs to be called from a C# project. The functions logically break up to form a few classes that will be API presented to the rest of the project. ...
9
votes
3answers
1k views

Things to keep in mind when migrating from VS2008 to VS2010

So, I'll be soon working on porting two APIs (C++ and C++/CLI) to use the VS2010 compiler. I think it'd be a good idea to have a head start on this. Any tips?
9
votes
3answers
3k views

In C++/CLR, what does a hat character ^ do?

I was reading Ivor Horton's Beginning Visual C++ 2008 and many of its CLR examples have int main(array<System::String ^> ^args) definition for main. I went back, page by page, to the ...
8
votes
6answers
498 views

Should a WPF application be written in C++ or C#?

WPF applications are, at its core, managed applications? Right? So, I have to choose between using managed C++ or managed C#. I experimented with managed C++ years ago. It seemed to be not quite ...
8
votes
2answers
322 views

Exposing an ISO C++ class to C#

I need to expose some C++ classes to C# (I am building on Linux, using mono, so COM is not an option) The evidence I have gathered so far suggests that the best way to approach this is: Write a ...
8
votes
2answers
535 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
1k views

C++ vs. C++/CLI: Const qualification of virtual function parameters

[All of the following was tested using Visual Studio 2008 SP1] In C++, const qualification of parameter types does not affect the type of a function (8.3.5/3: "Any cv-qualifier modifying a parameter ...
8
votes
4answers
957 views

Is there an equivalent to the C# “var” keyword in C++/CLI?

In C#, I like the var keyword for situations like this: var myList = new List<MyType>(); Is there any equivalent in C++/CLI, or do I have to repeat the type name everytime just like this: ...
8
votes
4answers
985 views

Please, describe you experience of using Microsoft C++/CLI

C++/CLI is very powerful language. It's the only CLR language where you can seamlessly combine managed and unmanaged code. How many software developers (on this site) are using this language? In ...
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
6answers
9k views

Using C++ Class DLL in C# Application

I have an unmanaged C++ DLL which merely exports a single class (not COM...it's just a simple C++ class) as its interface. I want to use this class in C# but am told that it cannot merely be imported ...
7
votes
5answers
302 views

Native c++ dll running slower when called from VB.net vs. running called from native .exe

I have some code in native C++ (Visual C++ 2010) to process a file of some GB. I compiled it to an .exe and it takes about 8 minutes. But I need to call it from a Visual Basic .net interface, so I put ...
7
votes
2answers
771 views

Optional parameters in managed C++/CLI methods

How can I declare a managed method in C++/CLI that has an optional parameter when used from C#? I've decorated the parameter with both an Optional and a DefaultParameterValue attribute (see: How ...
7
votes
1answer
698 views

Wrapping an Unmanaged C++ Class Library with C++/CLI - Question 1 - Project/Code Organization

Note: This post represents Question #1 of my inquiry. The introduction block (all text until the numbers are reached) is repeated in both questions as it is background information that may be needed ...
7
votes
3answers
364 views

Game Engine: Write in C++ and expose to C# or write directly in C#?

I am doing a bit of research before I am going to write my own 2D (and maybe some 3D) game engine. I have made an engine before using C# and XNA but I want to go cross platform this time by making my ...
7
votes
1answer
280 views

Dealing with Expression Blend's lack of support for C++/CLI projects

I have a WPF C# project that references a C++/CLI mixed mode project. I'm having trouble using the WPF project in Expression Blend 3. I'm new to Blend so perhaps this is obvious, but it won't ...
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 ...
7
votes
7answers
724 views

What are the advantages of doing 100% managed development using C++/CLI?

What are the advantages (the list of possible disadvantages is lenghtly) of doing 100% managed development using C++/CLI (that is, compile with /clr:safe which "generates ... assemblies, like those ...
7
votes
10answers
1k views

C++/CLI : Advantages over C#

Is there any major advantage of managed C++/CLI over C#. Definitely not the syntax I suppose as the following code in C++/CLI is real ugly, C++/CLI code: [Out]List<SomeObject^>^% someVariable ...
7
votes
1answer
2k views

How to use Nullable types in c++/cli?

I have the following code, which I thought would work: property Nullable<double> Angle { Nullable<double> get() { return nullptr; } } It doesn't. How can I do it? Does ...
7
votes
6answers
763 views

Is C++/CLI faster than C#

Is C++/CLI faster than C#? In which type of operations is it faster? Thanks!
7
votes
8answers
3k views

How to find the name of the current function at runtime? (C++)

After years of using the big ugly MFC ASSERT macro, I have finally decided to ditch it and create the ultimate ASSERT macro. I am fine with getting the file and line number, and even the expression ...
6
votes
1answer
89 views

Call Delphi DLL from C++\CLI with many parameters

I have Delphi 2010 built DLL with two methods: function Foo1(a, b: Integer):PChar; export; stdcall; function Foo2(a, b, c:Integer):PChar; export; stdcall; exports Foo1, Foo2; Each of them returns ...
6
votes
1answer
888 views

Visual C++ 2010: Changes to MSVC runtime deployment (no more SxS with manifest)

Where can I find some official note, kb article or other documentation describing changes to the Visual Studio 2010 C/C++ runtime linking and deployment policy? Under Visual Studio 2008 (with the ...
6
votes
1answer
196 views

C++/CLI array initializer compilation error

Can someone explain why the following code won't compile (formatted oddly to make it a touch easier to see the problem): ListView ^ listview = gcnew ListView(); listview->Items->AddRange( gcnew ...
6
votes
4answers
749 views

Designer Rejecting User Control

I have a C++ 'Control Library Project' compiled using /CLR. Inside this project there is a User Control that makes a call to a native DLL. This user control appears in the designer toolbox as it ...

1 2 3 4 5 35