ASP.NET/C#
[C#] Guid 전역 고유한 키값 생성하기
http://portfolio.wonpaper.net
2022. 11. 18. 20:20
C# 으로 임의의 고유한 키값 만들때 아래의 코드가 유용하다. 간단하다.
Guid.NewGuid().ToString()
1
2
3
4
5
6
7
8
9
|
// Create and display the value of two GUIDs.
Guid g = Guid.NewGuid();
Console.WriteLine(g);
Console.WriteLine(Guid.NewGuid());
// This code example produces a result similar to the following:
// 0f8fad5b-d9cb-469f-a165-70867728950e
// 7c9e6679-7425-40de-944b-e07fc1f90ae7
|
cs |
참고 : https://learn.microsoft.com/ko-kr/dotnet/api/system.guid.newguid?view=net-7.0