在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
如果我们要在新加一个命名空间的引用,可以在项目文件中配置增加 我们使用.NET 6创建应用之后,项目文件的内容类似下面这样: <Project Sdk="Microsoft.NET.Sdk.Web"> <PropertyGroup> <TargetFramework>net6.0</TargetFramework> <Nullable>enable</Nullable> <ImplicitUsings>enable</ImplicitUsings> </PropertyGroup> <ItemGroup> <PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" /> </ItemGroup> </Project> 从上面的 我们的代码将变为下面这样: 来看下面的这个示例: 项目文件的内容是这样的: <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>net6.0</TargetFramework> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> </PropertyGroup> <ItemGroup> <Using Include="System.Console" Static="true" /> <Using Include="System.IO.File" Alias="MyFile"/> <Using Remove="System" /> </ItemGroup> </Project> .NET6为我们生成必要的命名空间引用的同时,也为我们自动生成了 内容如下: // <auto-generated/> global using global::System.Collections.Generic; global using global::System.IO; global using global::System.Linq; global using global::System.Net.Http; global using global::System.Threading; global using global::System.Threading.Tasks; global using MyFile = global::System.IO.File; global using static global::System.Console;
到此这篇关于 .NET6特新 隐式命名空间引用的文章就介绍到这了,更多相关 .NET6 隐式命名空间引用内容请搜索极客世界以前的文章或继续浏览下面的相关文章希望大家以后多多支持极客世界! |
请发表评论