[Solved] Discord.NET How can I give every person a role by one command?

You can do it using the code below. There are various ways of improving the command’s functionality so perhaps think about that. [Command(“addrole all”), Summary(“Adds the Star role to all users”)] public async Task AddRoleStarCommand() { // Gets all the users of the guild. Note that this may not completely // work for extremely large … Read more

[Solved] Admin role management in ASP.NET website

First: My first question is: Is this a good or rather I should say,the CORRECT thing to do?? Nobody can say whether it is good or bad except you, because only you best understand the logics and scope and scalability of your system. Point is, it depends on your system and requirement. Moreover, what you … Read more