Пример #1
0
        /// <summary>
        /// Shows how to delete a list
        /// </summary>
        /// <param name="twitterCtx">TwitterContext</param>
        private static void DeleteListDemo(TwitterContext twitterCtx)
        {
            List list = twitterCtx.DeleteList("LinqToTweeter", "test2");

            Console.WriteLine("List Name: {0}, Description: {1}",
                list.Name, list.Description);
        }