欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-11-29 17:20:28
public bool isadministrator() { windowsidentity current = windowsidentity.getcu...
public bool isadministrator()
{
	windowsidentity current = windowsidentity.getcurrent();
	windowsprincipal windowsprincipal = new windowsprincipal(current);
	return windowsprincipal.isinrole(windowsbuiltinrole.administrator);
}