我爱Aspx >> C#.Net >> 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(@"<br>System.Guid.NewGuid().ToString() = " + System.Guid.NewGuid().ToString());
Response.Write(@"<br>System.Guid.NewGuid().ToString(""N"") = " + System.Guid.NewGuid().ToString("N"));
Response.Write(@"<br>System.Guid.NewGuid().ToString(""D"") = " + System.Guid.NewGuid().ToString("D"));
Response.Write(@"<br>System.Guid.NewGuid().ToString(""B"") = " + System.Guid.NewGuid().ToString("B"));
Response.Write(@"<br>System.Guid.NewGuid().ToString(""P"") = " + System.Guid.NewGuid().ToString("P"));
上一篇: 深入理解C#编程中的组件-事件-委托
下一篇: Visual C#中调用Windows API的要点
Ҷƪл˵?
C#访问接口[05-12]
使用C#开发SmartPhone程序入门[05-12]
用C#设计Windows应用程序模板[05-12]
用C#编写发手机中文短信息Window..[05-12]
浅析Java与C#的事件处理机制[05-12]
用Visual C#访问DB2数据库[05-12]
用C# Builder生成PDF文件[05-12]
MapPoint+SmartPhone+C#开发示例[05-12]
C# Builder WinForm开发入门[05-12]
C# Builder构建Web服务和客户端[05-12]
C#访问接口[05-12]
使用C#开发SmartPhone程序入门[05-12]
用VC++实现控制程序运行唯一实例[05-12]
创建ActiveX接口移植Excel工作表[05-12]
CGI教程(7)解码数据发送给CGI脚本..[05-12]
安装配置篇(四)--apache+resin[05-12]
PHP4.03在linux下的安装[05-12]
ip限制函数[05-12]
移动设备最优化(直逼网络j2me的..[05-12]
连接池与SQL Server 2000 Analys..[05-12]