8 lines
236 B
C#
8 lines
236 B
C#
namespace CC_Functions.W32
|
|
{
|
|
public static class MiscFunctions
|
|
{
|
|
public static bool IsAdministrator =>
|
|
new WindowsPrincipal(WindowsIdentity.GetCurrent()).IsInRole(WindowsBuiltInRole.Administrator);
|
|
}
|
|
} |