生成guid

using System;

namespace _42_GUID
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
            Guid.NewGuid();
            string id = Guid.NewGuid().ToString();
            Console.WriteLine(id);

        }
    }
}

 

相关文章:

  • 2021-12-23
  • 2021-12-04
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-25
  • 2022-02-11
  • 2021-10-06
猜你喜欢
  • 2022-12-23
  • 2021-07-02
  • 2022-12-23
  • 2021-07-01
  • 2021-11-17
  • 2021-09-06
  • 2021-06-09
相关资源
相似解决方案