using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Programm
{
class main
{
static public void Main()
{
int count = 1000;
int X = 10;
int Y = 2;
ConsoleColor text = ConsoleColor.White;
ConsoleColor background = ConsoleColor.Black;
PsCon.PsCon.PrintCount(count, X, Y, text, background);
Console.Write("\n\n");
}
}
}
|