Advertisement
clockworksaint

Mono 2.10.8.1 Collation Test Output

Jun 3rd, 2013
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. ~/pinyin$ mono --version
  2. Mono JIT compiler version 2.10.8.1 (Debian 2.10.8.1-5ubuntu1)
  3. Copyright (C) 2002-2011 Novell, Inc, Xamarin, Inc and Contributors. www.mono-project.com
  4. TLS: __thread
  5. SIGSEGV: altstack
  6. Notifications: epoll
  7. Architecture: x86
  8. Disabled: none
  9. Misc: softdebug
  10. LLVM: supported, not enabled.
  11. GC: Included Boehm (with typed GC and Parallel Mark)
  12. ~/pinyin$ dmcs CollationTest.cs && mono CollationTest.exe invariant
  13. : Invariant Language (Invariant Country)
  14. yi '以' ('\u4EE5')
  15. zuò '作' ('\u4F5C')
  16. zé '则' ('\u5219')
  17. miào '妙' ('\u5999')
  18. qiao '巧' ('\u5DE7')
  19. shì '示' ('\u793A')
  20. fan '范' ('\u8303')
  21. shen '身' ('\u8EAB')
  22. ~/pinyin$ dmcs CollationTest.cs && mono CollationTest.exe zh-CHS
  23. zh-CHS: Chinese
  24. fan '范' ('\u8303')
  25. miào '妙' ('\u5999')
  26. qiao '巧' ('\u5DE7')
  27. shen '身' ('\u8EAB')
  28. shì '示' ('\u793A')
  29. yi '以' ('\u4EE5')
  30. zé '则' ('\u5219')
  31. zuò '作' ('\u4F5C')
  32. ~/pinyin$ dmcs CollationTest.cs && mono CollationTest.exe zh-Hans
  33. zh-CHS: Chinese
  34. fan '范' ('\u8303')
  35. miào '妙' ('\u5999')
  36. qiao '巧' ('\u5DE7')
  37. shen '身' ('\u8EAB')
  38. shì '示' ('\u793A')
  39. yi '以' ('\u4EE5')
  40. zé '则' ('\u5219')
  41. zuò '作' ('\u4F5C')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement