Closed
Description
opened on May 31, 2016
I am currently working on porting Eto to .NET Core, and the Eto codebase uses a large number of nested types. However, I notice that the VSCode IntelliSense parser does not handle nested types correctly. For example, when I move the mouse over the declaration of Eto.EtoEnvironment.IHandler
, the tooltip displays Eto.IHandler
. This may cause problems, as by this logic Eto will have dozens of interfaces called IHandler
, each of them appearing to be in the same namespace. Note that the C# compiler parses this code properly.
Activity