首页 > 编程 > C# > 正文

C#判断程序是否是管理员权限运行的方法代码示例

2020-01-24 02:04:13
字体:
来源:转载
供稿:网友
public bool IsAdministrator(){	WindowsIdentity current = WindowsIdentity.GetCurrent();	WindowsPrincipal windowsPrincipal = new WindowsPrincipal(current);	return windowsPrincipal.IsInRole(WindowsBuiltInRole.Administrator);}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表