Managed Code

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am adding some of the .Net extensions to a Visual C++/MFC application that I have. I noticed that one of the System namespaces I wanted to use does not show in my intelesense. Is there a place I can look to see what are all the extensions that are available to me, or is the whole CLR available
 
Bob,
In your VS project, you have to add a reference to a DLL in order for its
types to appear with intellisense. The reason why you have some intellisense
when you start a new project is because VS already add references to the
most basic DLLs.

--
Thanks.
Paulo

DISCLAIMER: This posting is provided "AS IS" with no warranties, and confers
no rights. Use of any included code samples are subject to the terms
specified at http://www.microsoft.com/info/cpyright.htm"


Bob said:
I am adding some of the .Net extensions to a Visual C++/MFC application
that I have. I noticed that one of the System namespaces I wanted to use
does not show in my intelesense. Is there a place I can look to see what are
all the extensions that are available to me, or is the whole CLR available?
 
Back
Top