它是否会影响使用类型别名而不是完整命名空间的性能?例如,只导入Form类 using Form = System.Windows.Forms.Form; 或导入所有类型 using System.Windows.Forms;
Form
using Form = System.Windows.Forms.Form;
using System.Windows.Forms;
c#
c# ×1