C# GUID 建立

C# GUID 建立

 
   List<Guid> list = new List<Guid>();
 
   for (int i = 0; i < 100; i++)
   {
      list.Add(System.Guid.NewGuid());
   }