CombinationsGenerator.Main C# (CSharp) Метод

Main() статический приватный Метод

static private Main ( ) : void
Результат void
    static void Main()
    {
        string decorationLine = new string('-', Console.WindowWidth);
        Console.Write(decorationLine);
        Console.WriteLine("***Generating all the combinations with duplicates of K elements from \n a N-element set***");
        Console.Write(decorationLine);

        Console.Write("Enter the number of elements N in the set: ");
        n = int.Parse(Console.ReadLine());
        Console.Write("Enter the number of elements K in the combinations: ");
        k = int.Parse(Console.ReadLine());
        currentCombination = new int[k];

        Console.WriteLine("All combinations with duplicates C~({0}, {1}) are: ", n, k);
        GenerateCombinations(1, 0);
    }