環境

[C#] ログインユーザ名を取得する(Environment.UserName)

2022年3月7日

ログインユーザ名を取得するには、Environment.UserName を使用します。

サンプル

例)ログインユーザ名を取得する


using System;

string username = Environment.UserName;

結果例

taro

関連記事

-環境
-