Exemple #1
0
 static void ListPosts(Bastion bastion)
 {
     foreach (var post in bastion.ListPosts())
     {
         ConsoleWrite(ConsoleColor.White, post.Id);
         ConsoleWrite(ConsoleColor.Green, " {0}", post.Title);
         ConsoleWriteLine(ConsoleColor.Yellow, " {0} <{1}>", post.Author.Name, post.Author.Identifier);
     }
 }