Code: Select all
Using System.Xml.Serialization
Using System.Collections.Generic
Begin Namespace MyNamespace
Function Start() As Void Strict
Local oMyOb as MyOtherClass // It's in the same namespace MyNamespace
oMyObj := MyOtherClass{}
oMyObj: <-- Should get intellisense here...
To get Intellisense to work, I have to add a Using statement for this very same namespace that I am already coding in...
Code: Select all
Using MyNamespace
Code: Select all
Using System.Xml.Serialization
Using System.Collections.Generic
Using MyNamespace
Begin Namespace MyNamespace
Function Start() As Void Strict
Local oMyOb as MyOtherClass // It's in the sane namespace MyNamespace
oMyObj := MyOtherClass{}
oMyObj: <-- Now intellisense will work here...