What is the difference between “using x.y;” and “using z = x.y;”
Filed in C# on May.14, 2007
using x.y; is just referencing a namespace while using z = x.y; defines an alias.
Eg:
using Microsoft.DirectX;
using DirectX = Microsoft.DirectX;"
Related posts:






















