S
shapper
Hello,
I am creating a list of Role as follows:
IList<Role> roles = new List<Role>();
roles.Add(new Role { Type = RoleType.Administrator, Name =
"Administrador", Open = false });
...
After I add all roles I need to add a new role at the start of the
list.
Can I do this?
Thanks,
Miguel
I am creating a list of Role as follows:
IList<Role> roles = new List<Role>();
roles.Add(new Role { Type = RoleType.Administrator, Name =
"Administrador", Open = false });
...
After I add all roles I need to add a new role at the start of the
list.
Can I do this?
Thanks,
Miguel