From 817a6dc1f5f6afd4bb756e1f32efb92d0b2d2eca Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Sat, 4 Sep 2021 19:07:46 +0200 Subject: [PATCH] Notes on how to disable net 6 implicit imports --- DotNet/C#/C#.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/DotNet/C#/C#.md b/DotNet/C#/C#.md index 4239e76..718fa8f 100644 --- a/DotNet/C#/C#.md +++ b/DotNet/C#/C#.md @@ -72,6 +72,12 @@ namespace Namespace // namespace declaration } ``` +To disable .NET 6/C# 10 **implicit namespace imports**: + +```xml +true +``` + ### Top Level Statements/Progrmas (C# 9) ```cs