[Mono-list] namespace problem
Sebastien Lambla
sebastien.lambla@6sens.com
Sat, 14 Jul 2001 03:39:03 -0700
Hello all,
while implementing classes, it occured to me there was a namespace
problem... For development and testing purpose, I'm putting all the classes
under the Mono.System namespace. When calling a class in this namespace from
another class in this namespace too, the compiler seems not to want to link
anything from the mscorlib System namespace...
For ex:
namespace Mono.System
{
class Type
{
// whatever
}
class access
{
// Here, what code should be used for the System.Type and not the
Mono.System.Type? Using System.Type just goes back to Mono.System.Type
(because of the namespace declaration...)
}
}
Sebastien Lambla