mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-23 06:31:02 -05:00
6 lines
130 B
C#
6 lines
130 B
C#
|
string access_level = "user";
|
|||
|
if (access_level != "user") //Check if admin
|
|||
|
{
|
|||
|
Console.WriteLine("You are an admin.");
|
|||
|
}
|