選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

22 行
353 B

  1. using System;
  2. namespace CIG.Translation.Native
  3. {
  4. public static class SystemLocale
  5. {
  6. public static string[] DefaultLanguages
  7. {
  8. get
  9. {
  10. if (SystemLocale._langs == null)
  11. {
  12. SystemLocale._langs = AndroidLocale.GetLanguages();
  13. }
  14. return SystemLocale._langs;
  15. }
  16. }
  17. private static string[] _langs;
  18. }
  19. }