C#10からの仕様。
using directive, using static directive に global を付けるとそのコードが含まれるプロジェクトの全てのコードに有効になる。
global の付いていない using directive, namespace, using static より前に入れる。
global using System;
global using System.Collections.Genelic;
global using static System.Console;
using System.Globalization;
namespace NameSpace1;
コメント