「Xamarin.AndroidでUUIDを生成取得する」の版間の差分

編集の要約なし
編集の要約なし
 
3行目: 3行目:
[[リセマラ]]対応[[ゲーム]]などを作るときはこれ。
[[リセマラ]]対応[[ゲーム]]などを作るときはこれ。


<source>
<source lang="csharp">
    public class Installation
public class Installation
{
    public static string _uuid;
    public const string INSTALLATION = "INSTALLATION";
 
    public static string GetUUID(Context context)
     {
     {
         public static string _uuid;
         if (_uuid == null)  
        public const string INSTALLATION = "INSTALLATION";
 
        public static string GetUUID(Context context)
         {
         {
             if (_uuid == null)  
            var installationFilePath = Path.Combine(context.FilesDir.AbsolutePath, INSTALLATION);
             if (!File.Exists(installationFilePath))
             {
             {
                 var installationFilePath = Path.Combine(context.FilesDir.AbsolutePath, INSTALLATION);
                 _uuid = System.Guid.NewGuid().ToString();
                if (!File.Exists(installationFilePath))
                File.WriteAllText(installationFilePath, _uuid);
                {
                    _uuid = System.Guid.NewGuid().ToString();
                    File.WriteAllText(installationFilePath, _uuid);
                }
                _uuid = File.ReadAllText(installationFilePath);
             }
             }
             return _uuid;
             _uuid = File.ReadAllText(installationFilePath);
         }
         }
        return _uuid;
     }
     }
}
</source>
</source>