TeamMentor.CoreLib.TeamMentorUserManagement_TMUser.toStringList C# (CSharp) Method

toStringList() public static method

public static toStringList ( this userRoles ) : List
userRoles this
return List
        public static List<String> toStringList(this List<UserRole> userRoles)
        {
            return (from role in userRoles
                    select role.str()).toList();
        }