Is there a performance difference at all between importing an entire namespace versus using aliasing to import only one class? If so, how much of a difference is it?
Examples:
Importing an entire namespace:
using System.Reflection;
Aliasing to import only one class:
using BindingFlags = System.Reflection.BindingFlags;