Using .NET Inside C++

I'm trying to use some .NET Features inside C++, such as :

http://msdn.microsoft.com/en-us/library/System.Windows.Controls.Image(v=vs.110).aspx

I've tried putting this line into my code, though it does not recognize it, saying it does not exist :

 
#using <System.Windows.Controls.dll> 


While it does recognize

 
#using <System.Windows.Forms.dll> 


Why? Thanks!
Last edited on
closed account (10X9216C)
Save yourself the trouble and just use C#.
I really rather not...
closed account (10X9216C)
Then don't use .net, it isn't worth the effort. C++/cli is some twisted offspring by microsoft that i would not recommend using at all.
I see., Thank you.
Topic archived. No new replies allowed.