자기가 사용중이 PC의 이름을 가지고 온다.

string[] str = new string[2];
string fulName = System.Security.Principal.WindowsIdentity.GetCurrent().Name;
str = fulName.Split('\\');
textBox1.Text = str[1];

이렇게 하면 내 PC이름을 가지고 온다.
Posted by 천사주니
,