예제 #1
0
        public void runApp()
        {
            this.files.ForEach(file =>
            {
                var parser       = new BlogPostParser();
                parser.fileRoute = file;
                blogposts.Add(parser.parse());
            });

            client.send(this.blogposts, this.user, this.password);
        }