This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
CC-Functions/Misc/Security.cs
CreepyCrafter24 53a9bc5fe0 Rider+Fix
2019-12-22 16:58:16 +01:00

10 lines
271 B
C#

using System.Security.Principal;
namespace CC_Functions.Misc
{
public static class MiscFunctions
{
public static bool IsAdministrator =>
new WindowsPrincipal(WindowsIdentity.GetCurrent()).IsInRole(WindowsBuiltInRole.Administrator);
}
}