using System.Collections.Generic;
public static void Main()
string smallDog = "Yorkie";
string mediumDog = "Poodle";
string largeDog = "German Shepard";
List<string> listOfDogs = new List<string>(){"Poodle", "Bear", "Yorkie", "German Shepard"};
for (int i = 0; i < listOfDogs.Count;i++)
if(listOfDogs[i] == smallDog)
Console.WriteLine($"{listOfDogs[i]} is a small dog.");
else if (listOfDogs[i] == mediumDog)
Console.WriteLine($"{listOfDogs[i]} is a medium dog.");
else if (listOfDogs[i] == largeDog)
Console.WriteLine($"{listOfDogs[i]} is a large dog.");
Console.WriteLine($"{listOfDogs[i]} is not a dog at all.");