Implicit Usings in .NET 6

1 · Scott Hanselman · Sept. 16, 2021, 7:05 p.m.
".NET 6 introduces implicit namespace support for C# projects. To reduce the amount of using directives boilerplate in .NET C# project templates, namespaces are implicitly included by utilizing the global using feature introduced in C# 10." NOTE: Did you know that Visual Basic has had this very feature forever? Remember that C# as a language is itself versioned and in .NET 6 we'll have support for C# 10 features like global usings, which are super cool. Since we don't want to break existing stu...