I need to write a C# program that asks for a pattern and for each pattern beeps one and goes silence for 1 second.
This is my code:
for (int i=0;i< pattern; i++)
{
Console.Beep();
*************** ** //I have no idea what to put for 1 sec of silence
}
any suggestions???
This is my code:
for (int i=0;i< pattern; i++)
{
Console.Beep();
*************** ** //I have no idea what to put for 1 sec of silence
}
any suggestions???
Comment