Intermediate
C#
Q86 / 100
What is global using in C# 10?
Correct! Well done.
Incorrect.
The correct answer is B) global using System; adds the using directive to every file in the project without repeating it
B
Correct Answer
global using System; adds the using directive to every file in the project without repeating it
Explanation
.NET 6+ project templates add global using System; and others automatically. You can define them in a GlobalUsings.cs file for the project.
Progress
86/100