Last active
August 16, 2020 09:56
-
-
Save greatcodeeer/342b0e7f9d063b37cfd9 to your computer and use it in GitHub Desktop.
C# GUID的使用
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Guid.NewGuid().ToString("N") //结果为:38bddf48f43c48588e0d78761eaa1ce6 | |
Guid.NewGuid().ToString("D") //结果为:57d99d89-caab-482a-a0e9-a0a803eed3ba | |
Guid.NewGuid().ToString("B") //结果为:{09f140d5-af72-44ba-a763-c861304b46f8} | |
Guid.NewGuid().ToString("P") //结果为:(778406c2-efff-4262-ab03-70a77d09c2b5) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment