Creating GUIDs in c#

时光一好久不见

时光一好久不见

2016-01-29 12:57

Creating GUIDs in c#,Creating GUIDs in c#
What is a GUID
For those of you who don''t know, a GUID (pronounced goo''id - Globally unique identifier) is a 128-bit integer that can be used to uniquely identify something. You may store users or products in your database and you want somehow uniquely identify each row in the database. A common approach is to create a autoincrementing integer, another way would be to create a GUID for your products.
How to create a GUID in C#
The GUID method can be found in the System namespace. The GUID method System.Guid.NewGuid() initializes a new instance of the GUID class.
There are also a few overloads available for those of you who want the GUID formatted in a particular fashion.
The following live sample will output the GUID generated, the source code is also below.
Response.Write(@"
System.Guid.NewGuid().ToString() = " + System.Guid.NewGuid().ToString());
Response.Write(@"

System.Guid.NewGuid().ToString(""N"") = " + System.Guid.NewGuid().ToString("N"));
Response.Write(@"
System.Guid.NewGuid().ToString(""D"") = " + System.Guid.NewGuid().ToString("D"));
Response.Write(@"
System.Guid.NewGuid().ToString(""B"") = " + System.Guid.NewGuid().ToString("B"));
Response.Write(@"
System.Guid.NewGuid().ToString(""P"") = " + System.Guid.NewGuid().ToString("P"));
展开更多 50%)
分享

猜你喜欢

Creating GUIDs in c#

电脑网络
Creating GUIDs in c#

展现C#(1):C#简介

ASP
展现C#(1):C#简介

s8lol主宰符文怎么配

英雄联盟 网络游戏
s8lol主宰符文怎么配

C#简介

编程语言 网络编程
C#简介

掌握 C#

电脑网络
掌握 C#

lol偷钱流符文搭配推荐

英雄联盟 网络游戏
lol偷钱流符文搭配推荐

Beginner with C#

编程语言 网络编程
Beginner with C#

Thinking in C#

电脑网络
Thinking in C#

lolAD刺客新符文搭配推荐

英雄联盟
lolAD刺客新符文搭配推荐

[VB.NET] Single & Double

[VB.NET] Single & Double

利用C#编写一个简单的抓网页应用程序

利用C#编写一个简单的抓网页应用程序
下拉加载更多内容 ↓