I have a new project i created in VS 2013. I am using the identity system and i\'m confused how to get a list of all users to the application and all roles int he applicati
System.Web.Security Roles class also allows obtaining the list of roles.
List roles = System.Web.Security.Roles.GetAllRoles();