hiding names spaces & heirarchy.

  • Thread starter Thread starter Ibrahim.
  • Start date Start date
I

Ibrahim.

Hello,

HOw can I hide namespaces & class heirarchy in object browser of VS2005, I
dont want to expose these namesspaces to the developer except the required
ones..

are there any settings i can do it programatically to achieve this?

Thanks.
 
Ibrahim. said:
HOw can I hide namespaces & class heirarchy in object browser of VS2005, I
dont want to expose these namesspaces to the developer except the required
ones..

are there any settings i can do it programatically to achieve this?

You cannot hide namespaces, but you can prevent the client from using
classes defined in the DLL by marking them as 'Private', for example.
 
Back
Top