Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            Console.WriteLine("[List of basic Tweet Message]");
            TweetManager.Initialize();

            Console.WriteLine("\n\n[List of all Tweet Messages from the file]");
            TweetManager.ShowAll();

            Console.WriteLine("\n\n[List of all Tweet Messages only including specific Tag from the file]");
            TweetManager.ShowAll("Raptors");
        }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            Console.WriteLine("----- Display List of Created Tweets -----");
            Tweet.Initialize();

            Console.WriteLine("----- Display List of Tweets on the File -----");
            TweetManager.ShowAll();

            Console.WriteLine("----- Display List of Tweets with Specific Tag on the File -----");
            TweetManager.ShowAll("Raptors");
        }