C#:判断当前程序是否通过管理员运行

原文:C#:判断当前程序是否通过管理员运行

public bool IsAdministrator()
{
WindowsIdentity current = WindowsIdentity.GetCurrent();
WindowsPrincipal windowsPrincipal = new WindowsPrincipal(current);
return windowsPrincipal.IsInRole(WindowsBuiltInRole.Administrator);
}

 

 

 

 

转载声明:本文转载至http://www.zhoumy.cn/?p=9

C#:判断当前程序是否通过管理员运行

上一篇:Windows Mobile 6.0 SDK和中文模拟器下载


下一篇:WPF DataGrid自定义样式