G
Guest
I am having a problem with namespace resolution. Example is below:
Namespace MyNamespace
Public Class MyClass
public x as System.String
end class
end namespace
I get the following compile error:
Type 'System.String' is not defined.
Using VS 2003. There is a reference to system.dll in the project. Nothing
else unusual that I know of. Why won't it resolve System.String?
If I make it just String it works, but I am using some generated code so
this is not easy to change everywhere.
Please help!!!
Thanks, Brian.
Namespace MyNamespace
Public Class MyClass
public x as System.String
end class
end namespace
I get the following compile error:
Type 'System.String' is not defined.
Using VS 2003. There is a reference to system.dll in the project. Nothing
else unusual that I know of. Why won't it resolve System.String?
If I make it just String it works, but I am using some generated code so
this is not easy to change everywhere.
Please help!!!
Thanks, Brian.