創建C#項目且使用.Net6.0以上的版本時,預設code會使用頂級語句形式: 1、略去static void Main(String[ ] args)主方法入口; 2、隱式使用(即隱藏且根據代碼所需要的類自動調用)其他命名空間(包括): using System; using System.IO; ...
創建C#項目且使用.Net6.0以上的版本時,預設code會使用頂級語句形式:
1、略去static void Main(String[ ] args)主方法入口;
2、隱式使用(即隱藏且根據代碼所需要的類自動調用)其他命名空間(包括):
using System;
using System.IO;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
如果想精確的控制使用的命名空間可通過下述關閉隱式使用(implicitUsing):
1、選中項目,右鍵選擇《編輯項目文件》,預設模板如下:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
2、在<PropertyGroup>標簽內添加下述標簽後保存即可關閉隱式使用:
<ImplicitUsings>disable</ImplicitUsings>
其他問題:
在C#10之後,每個文件只有一個命名空間時,可以使用簡易命名空間定義,即:
原spacename形式為
namespace xxx
{
coding section
}
可修改為
namespace xxx;
coding section
!!!註意,簡易命名空間需要在所有的類型定義之前,所以會和頂級語句產生衝突。
參考地址:.NET 6+ 中的 C# 控制台應用模板更改 - .NET | Microsoft Learn