📜  C#|如何通过控制台播放提示音

📅  最后修改于: 2021-05-29 17:46:33             🧑  作者: Mango

给定普通的C#控制台,任务是通过控制台播放“哔”声。

方法:可以借助C#的System包中的Console Class的Beep()方法来实现。

控制台类Beep()方法用于通过控制台扬声器播放Beep声音。

以下程序显示Console.Beep()方法的用法:

程序1:

// C# program to illustrate the
// Console.Beep Method
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
  
namespace GFG {
  
class Program {
  
    static void Main(string[] args)
    {
        // Play beep sound once
        Console.Beep();
    }
}
}

程序2:播放蜂鸣声n次。

// C# program to illustrate the
// Console.Beep Method
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
  
namespace GFG {
  
class Program {
  
    static void Main(string[] args)
    {
        int n = 5;
  
        // Play beep sound n times
        for (int i = 1; i < n; i++)
            Console.Beep();
    }
}
}

注意:请在脱机Visual Studio上运行程序以体验输出。