Book a Demo

Author Topic: Nested namespaces - View code does not work  (Read 2545 times)

Ingvarius

  • EA Novice
  • *
  • Posts: 2
  • Karma: +0/-0
  • I love YaBB 1G - SP1!
    • View Profile
Nested namespaces - View code does not work
« on: November 18, 2006, 12:44:23 pm »
The MDG intergration for VS 2005 behaves strange when my classes are under nested namespaces.
Several things fail:
- View code
- Add new element
etc. etc.

If the class is under the top namespace:
namespace TopSpace
{
   public class Foo
   {
   }
}

all is fine, the MDG intergration works fine.

But with this:

namespace TopSpace.SubSpace
{
   public class FooSub
   {
   }
}

Nothing works anymore. Is this a known problem?