C_Sharp/GetGUID Edit Diff Refresh Backlink Random Search History Help Setting Hide Show 프로그램 실행 시 마다 새로운 GUID 생성 Console.WriteLine(System.Guid.NewGuid().ToString()) ex) 72eeb5c8-3f8f-4256-8f8e-928c41ae4141 윈도우 유저의 SID 얻기 혹시 유저의 유일한 식별 값을 찾으셨나요? User's Security Identifier (SID) System.Security.Principal.WindowsIdentity user = System.Security.Principal.WindowsIdentity.GetCurrent(); System.Security.Principal.SecurityIdentifier sid = user.User; Console.WriteLine(sid.ToString()); ex) S-1-5-21-773517038-3002278696-3936023892-1000 C Sharp GUID 이 글에는 0 개의 댓글이 있습니다. Please enable JavaScript to view the comments powered by Disqus. comments powered by Disqus