Advertisement
clockworksaint

Mono 3.0.10 Collation Test Output

Jun 3rd, 2013
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. ~/pinyin$ mono --version
  2. Mono JIT compiler version 3.0.10 ((no/eff4cb5 Mon May 13 14:51:45 BST 2013)
  3. Copyright (C) 2002-2012 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 (Simplified) Legacy
  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-Hans: Chinese (Simplified)
  34. yi '以' ('\u4EE5')
  35. zuò '作' ('\u4F5C')
  36. zé '则' ('\u5219')
  37. miào '妙' ('\u5999')
  38. qiao '巧' ('\u5DE7')
  39. shì '示' ('\u793A')
  40. fan '范' ('\u8303')
  41. shen '身' ('\u8EAB')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement