C#判断当前程序是否通过管理员运行的方法
本文实例讲述了C#判断当前程序是否通过管理员运行的方法。分享给大家供大家参考。
具体实现代码如下:
publicboolIsAdministrator() { WindowsIdentitycurrent=WindowsIdentity.GetCurrent(); WindowsPrincipalwindowsPrincipal=newWindowsPrincipal(current); returnwindowsPrincipal.IsInRole(WindowsBuiltInRole.Administrator); }
希望本文所述对大家的C#程序设计有所帮助。