Posted 12 years ago
by Tobias Lingemann
-
Software Devolpment Engineer,
Vector Informatik GmbH
Version: 13.1.0310
Platform: .NET 4.0
Environment: Windows 7 (64-bit)
In C# you can define usings without fully qualified names, if the using is inside of a namespace. However the .net add-on requires the fully qualified name.
namespace A
{
namespace B
{
public class Foo { }
}
namespace C
{
using B;
public class Bar
{
private Foo mFoo;
}
}
}
Best regards, Tobias Lingemann.