Пример #1
0
        public void DeleteAktie(string symbol)
        {
            var symbolList = IsolatedStorageService.GetStoredObject <List <string> >(AccessKey);

            if (symbolList != null)
            {
                symbolList.Remove(symbol);
                IsolatedStorageService.Save();
            }
        }
Пример #2
0
        /// <summary>
        /// Fügt ein Aktiensymbol in die im
        /// IsolatedStorage gespeicherte Symbolliste hinzu.
        /// </summary>
        /// <param name="aktienGesellschaftsSymbol">Aktiensymbol eines Unternehmens</param>
        public void AddAktie(string aktienGesellschaftsSymbol)
        {
            var symbole = IsolatedStorageService.GetStoredObject <List <string> >(AccessKey);

            if (symbole == null)
            {
                symbole = new List <string>();
            }

            symbole.Add(aktienGesellschaftsSymbol);

            IsolatedStorageService.StoreObject(symbole, AccessKey);
            IsolatedStorageService.Save();
        }