■ WindowsIdentity 클래스를 사용해 윈도우즈 사용자 계정을 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 |
using System.Security.Principal; string name = WindowsIdentity.GetCurrent().Name; string[] elementArray = name.Split('\\'); string user = elementArray[1]; |