Beispiel #1
0
 public void SetHaspels(Haspel[] haspels)
 {
     Haspels.Clear();
     foreach (Haspel h in haspels)
     {
         Haspels.Add(h);
     }
 }
        public async void SetHaspels()
        {
            Haspel[] haspels = await myApiManager.HaspelApiManager.GetData();

            Haspels.Clear();
            foreach (Haspel h in haspels)
            {
                Haspels.Add(h);
            }
        }