Arsen Zahray
Arsen Zahray

Reputation: 25367

Add reference to c# project in managed c++ project

I am writing a project in managed c++, and I am a bit rusty with it. I know that you can reference system assemblies with #using directive.

In c#, you can add a reference to a project. Is it possible to do the same in managed c++? If yes, how would I do that?

Upvotes: 1

Views: 1477

Answers (1)

Saurabh
Saurabh

Reputation: 1065

Right click on your project and then select References.

Under Common Properties->Framework and References, just click on Add new reference.

Upvotes: 2

Related Questions