Ejemplo n.º 1
0
        private static void SeeAllLists()
        {
            gData = new DataMethods();
            foreach(var l in gData.List_GetAllLists())
            {
                Console.WriteLine(string.Format("{0} ({1}) with {2} items.",l.Title,l.PublicKey, l.Items.Count.ToString()));
            }

            Console.Read();
        }