asp.net System.Guid ToString五種格式

來源:互聯網
上載者:User
這篇文章主要介紹了asp.net System.Guid ToString五種格式,需要的朋友可以參考下

參考:https://msdn.microsoft.com/en-us/library/97af8hh4.aspx

測試代碼:

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace GuidToString{  class Program  {    static void Main(string[] args)    {      Console.WriteLine(" -->" + System.Guid.NewGuid().ToString());      Console.WriteLine("N-->" + System.Guid.NewGuid().ToString("N"));      Console.WriteLine("D-->" + System.Guid.NewGuid().ToString("D"));      Console.WriteLine("B-->" + System.Guid.NewGuid().ToString("B"));      Console.WriteLine("P-->" + System.Guid.NewGuid().ToString("P"));      Console.WriteLine("X-->" + System.Guid.NewGuid().ToString("X"));      Console.ReadKey();    }  }}

測試結果:

注意事項:只能使用N、D、B、P、X(不區分大小寫)空,使用其他字母會出現異常

格式字串只能是“D”、“d”、“N”、“n”、“P”、“p”、“B”、“b”、“X”或“x”。

異常情況:

以下都正常:

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace GuidToString{  class Program  {    static void Main(string[] args)    {      Console.WriteLine(" -->" + System.Guid.NewGuid().ToString());      Console.WriteLine(" -->" + System.Guid.NewGuid().ToString(""));      Console.WriteLine("N-->" + System.Guid.NewGuid().ToString("N"));      Console.WriteLine("n-->" + System.Guid.NewGuid().ToString("n"));      Console.WriteLine("D-->" + System.Guid.NewGuid().ToString("D"));      Console.WriteLine("d-->" + System.Guid.NewGuid().ToString("d"));      Console.WriteLine("B-->" + System.Guid.NewGuid().ToString("B"));      Console.WriteLine("b-->" + System.Guid.NewGuid().ToString("b"));      Console.WriteLine("P-->" + System.Guid.NewGuid().ToString("P"));      Console.WriteLine("p-->" + System.Guid.NewGuid().ToString("p"));      Console.WriteLine("X-->" + System.Guid.NewGuid().ToString("X"));      Console.WriteLine("x-->" + System.Guid.NewGuid().ToString("x"));      Console.ReadKey();    }  }}

Guid.NewGuid().ToString()的幾種格式

1、Guid.NewGuid().ToString("N") 結果為:
38bddf48f43c48588e0d78761eaa1ce6

2、Guid.NewGuid().ToString("D") 結果為:
57d99d89-caab-482a-a0e9-a0a803eed3ba

3、Guid.NewGuid().ToString("B") 結果為:
{09f140d5-af72-44ba-a763-c861304b46f8}

4、Guid.NewGuid().ToString("P") 結果為:
(778406c2-efff-4262-ab03-70a77d09c2b5)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.