Csharp/C Sharp/Development Class/SystemSounds — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 11:43, 26 мая 2010
use Asterisk sound from SystemSounds
using System;
using System.Media;
class MainClass {
public static void Main() {
// Play the sound associated with the Asterisk event
SystemSounds.Asterisk.Play();
}
}