C# using 引用的简写
C# using 引用的简写是使用关键字 using,并在其后面加上命名空间,例如:
using System;
using System.Collections.Generic;
using System.Linq;
这样就可以在代码中直接使用 System、System.Collections.Generic 和 System.Linq 中的类和方法,而无需每次都写出完整的命名空间路径。
原文地址: https://www.cveoy.top/t/topic/b2kf 著作权归作者所有。请勿转载和采集!