Creating GUIDs in c #

Source: Internet
Author: User

What is a GUID


For those of you who dont know, a GUID (pronounced gooid-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 wocould 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 special 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 "));

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.