I find that it helps to download source code to see how things work. I did that with MVCForum, and when viewing the source code noticed a using statement as follows:
using MembershipCreateStatus = MVCForum.Domain.DomainModel.MembershipCreateStatus;
The MembershipCreateStatus is an enum and is used in different parts of the code as such.
if (createStatus != MembershipCreateStatus.Success)
Can someone explain why it would be done this way as I have never seen this before. Is it easier to do it this way rather than initialize the class?
*************Update*************
Thanks for the answers, sorry it was a duplicate but if I new about alias I would have search for that not "Using Statements"
I understand the use now.