TestGuid.cs 650 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Topten.JsonKit;
  6. using System.IO;
  7. using System.Reflection;
  8. using Xunit;
  9. namespace TestCases
  10. {
  11. public class TestGuid
  12. {
  13. [Fact]
  14. public void Test()
  15. {
  16. var src = new Dictionary<Guid, string>()
  17. {
  18. { Guid.NewGuid(), "First" },
  19. { Guid.NewGuid(), "Second" },
  20. { Guid.NewGuid(), "Third" },
  21. };
  22. var json = Json.Format(src);
  23. var dest = Json.Parse<Dictionary<Guid, string>>(json);
  24. }
  25. }
  26. }