Skip to content

Instantly share code, notes, and snippets.

@greatcodeeer
Last active August 16, 2020 09:56
Show Gist options
  • Save greatcodeeer/342b0e7f9d063b37cfd9 to your computer and use it in GitHub Desktop.
Save greatcodeeer/342b0e7f9d063b37cfd9 to your computer and use it in GitHub Desktop.
C# GUID的使用
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