美文网首页
获取计算机用户名

获取计算机用户名

作者: 泱千澈 | 来源:发表于2020-04-14 10:54 被阅读0次

    方法一

     string username = Environment.UserName;
    

    方法二

    WindowsIdentity windowsIdentity = WindowsIdentity.GetCurrent();
    string username = Path.GetFileName(windowsIdentity.Name);
    

    相关文章

      网友评论

          本文标题:获取计算机用户名

          本文链接:https://www.haomeiwen.com/subject/wqrzmhtx.html