Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fumiya-kume/eb57c6f8015e0c69cd59b90f4c8d9f37 to your computer and use it in GitHub Desktop.
Save fumiya-kume/eb57c6f8015e0c69cd59b90f4c8d9f37 to your computer and use it in GitHub Desktop.
// 設定を読みだすやつの改良版
// プロパティを取得
var Settings = Windows.Storage.ApplicationData.Current.RoamingSettings;
if (Settings.Values["hoge"] == null)
{
// データが保存されていない
}
else
{
// データが保存されていない
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment