nopCommerce
nopCommerce copied to clipboard
Global using directives
nopCommerce version: 4.60
With C# 10 you can use global using directives that the compiler will consider for the whole project.
@DmitriyKulagin For why, what benefits?
@RomanovM This will allow us to get rid of repeating fragments in our source files that do not carry a semantic load. The code will become cleaner. In addition, it will not affect performance in any way .
Closed #6159