コード例 #1
0
 public async Task handleFileSaveAsync(string?filePath, ProfileSaveFile profile)
 {
     if (filePath == null)
     {
         return;
     }
     Console.WriteLine("Writing file: {0}", filePath !);
     if (Path.GetExtension(filePath !) == Constants.DECRYPTED_FILE_EXTENSION)
     {
         await handleJsonFileSave(filePath !, profile);
     }
コード例 #2
0
        public void TestProfile()
        {
            var profile = new ProfileSaveFile();

            Assert.IsNotNull(profile);
        }