Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Program.cs « AppWithSubDirs « TestProjects « Assets « test « installer « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 20c24839186eb63409f9a19defd2b6c96a84eec1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using System;
using System.IO;
using System.Reflection;

namespace AppWithSubDirs
{
    public static class Program
    {
        public static void Main(string[] args)
        {
            string baseDir =
                Path.Combine(
                    Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location),
                    "Sentence");

            string Part(string dir="", string subdir="", string subsubdir="")
            {
                return File.ReadAllText(Path.Combine(baseDir, dir, subdir, subsubdir, "word"));
            }

            string message =
                Part("Interjection") +
                Part("Noun", "Pronoun") +
                Part("Verb", "Adverb") +
                Part("Verb") +
                Part() +
                Part("Noun", "Adjective", "Preposition") +
                Part("Noun", "Adjective", "Article") +
                Part("Noun", "Adjective") +
                Part("Noun") +
                Part("Conjunction") +
                Part("Noun", "Pronoun", "Another") + 
                // The following part with a really long name is generated while running the test.
                Part("This is a really, really, really, really, really, really, really, really, really, really, really, really, really, really long file name for punctuation");
                      
            // This should print "Wow! We now say hello to the big world and you."
            Console.WriteLine(message);
        }
    }
}