C#判断管理员权限运行 C#判断程序是否是管理员权限运行的方法代码示例
人气:0想了解C#判断程序是否是管理员权限运行的方法代码示例的相关内容吗,在本文为您仔细讲解C#判断管理员权限运行的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:C#,程序,管理员权限运行,下面大家一起来学习吧。
public bool IsAdministrator() { WindowsIdentity current = WindowsIdentity.GetCurrent(); WindowsPrincipal windowsPrincipal = new WindowsPrincipal(current); return windowsPrincipal.IsInRole(WindowsBuiltInRole.Administrator); }
加载全部内容