using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Programm
{
class main
{
static public void Main()
{
string ch = "@";
int coordX = 5;
int coordY = 2;
int size = 10;
ConsoleColor text = ConsoleColor.Yellow;
ConsoleColor background = ConsoleColor.Black;
PsCon.PsCon.PrintCountChar(ch, coordX, coordY, size, text, background);
bool cansel = true;
coordX = 3;
coordY = 1;
size = 3;
PsCon.PsCon.PrintCountChar(cansel, ch, coordX, coordY, size, text, background);
Console.Write("\n\n");
}
}
}
|