Använda bibliotek (using)
Using
using System;
using System.Net;
using System.Collections.Generic;
using System.Text.Json;// Utan "using System":
System.Console.WriteLine("Hello");
// Med "using System":
Console.WriteLine("Hello");
// Utan "using System.Collections.Generic":
System.Collections.Generic.List<string> list = new System.Collections.Generic.List<string>();
// Med "using System.Collections.Generic":
List<string> list = new List<string>();Global using (.NET 6)
Implicit using (.NET 6)
NuGet Gallery


NuGet via terminalen
Last updated