2. Basic Syntax
import namespace
Global import
C# >=10 support global keyword. If import namespace with global keyword, that namespace can available over all .cs file.
# GlobalUsings.cs
global using System;
It can be done by adding ImplicitUsings attribute on the ....
archdsp.hashnode.dev1 min read