コード例 #1
0
ファイル: SnapsEngine.cs プロジェクト: mzamp27/source
 /// <summary>
 /// Fetches a string from application local storage
 /// </summary>
 /// <param name="itemName">Name of the string to fetch</param>
 /// <returns>string that was found, or null if the item does not exist</returns>
 public static string FetchStringFromLocalStorage(string itemName)
 {
     return(manager.FetchStringFromLocalStorage(itemName));
 }