Does it affect performance to use type alias rather than full namespace?
For example, import just Form class
using Form = System.Windows.Forms.Form;
or import all types
using System.Windows.Forms;
Does it affect performance to use type alias rather than full namespace? For example,
Share
No this has absolutely no affect on the performance of your application. This could in theory have an affect on compilation time. But it would almost certainly be insignificant.