使用C# .NET获取当前用户名
.NET框架的System.Security.Principal
命名空间提供了访问安全信息的方法,其中包括当前用户的身份。要获取当前用户名,可以使用WindowsIdentity
类,如下所示:
代码:
<code class="language-csharp">string userName = System.Security.Principal.WindowsIdentity.GetCurrent().Name;</code>
说明:
WindowsIdentity.GetCurrent()
方法获取当前Windows身份。WindowsIdentity
对象的Name
属性以获取用户名。示例:
<code class="language-csharp">using System.Security.Principal; public class 获取当前用户名 { public static void Main() { string userName = WindowsIdentity.GetCurrent().Name; Console.WriteLine($"当前用户名:{userName}"); } }</code>
输出:
<code>当前用户名:DOMAIN\用户名</code>
以上是如何在 C# .NET 中获取当前用户名?的详细内容。更多信息请关注PHP中文网其他相关文章!