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

内容摘要
public bool IsAdministrator()
{
WindowsIdentity current = WindowsIdentity.GetCurrent();
WindowsPrincipal windowsPrincipal = new WindowsPrincipal(current);
文章正文
public bool IsAdministrator()
{
	WindowsIdentity current = WindowsIdentity.GetCurrent();
	WindowsPrincipal windowsPrincipal = new WindowsPrincipal(current);
	return windowsPrincipal.IsInRole(WindowsBuiltInRole.Administrator);
}


代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!