C#教程

关注公众号 jb51net

关闭
首页 > 软件编程 > C#教程 > C#判断管理员权限运行

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

投稿:junjie

这篇文章主要介绍了C#判断程序是否是管理员权限运行的方法代码示例,本文直接给出实现代码例子,需要的朋友可以参考下
public bool IsAdministrator()
{
	WindowsIdentity current = WindowsIdentity.GetCurrent();
	WindowsPrincipal windowsPrincipal = new WindowsPrincipal(current);
	return windowsPrincipal.IsInRole(WindowsBuiltInRole.Administrator);
}

您可能感兴趣的文章:
阅读全文