Skip to content

(Proposal) VB namespace local imports #264

@AdamSpeight2008

Description

@AdamSpeight2008

This is will bring VB.net into line with C#, that can specify imports that are in scope within the body of a namespace.
C#

using GlobalLibrary

namespace Foo
{
  using FooLibray;

  namespace Bar
  {
    using BarLibrary;
  }
}

Proposed VB

Imports GlobalLibrary

Namespace Foo
  Imports FooLibrary

  Namespace Bar
    Imports BarLibrary

  End Namespace
End Namespace

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions