play Windows sounds
Published: 14. December 2008 | Updated: 14. December 2008License: Microsoft Public License (MS-PL)
Categories: Windows
Tags: C# Media
Play the most common windows sound using C# in one line
Import namespace
using System.Media;
Code
SystemSounds.Question.Play(); SystemSounds.Beep.Play(); SystemSounds.Asterisk.Play(); SystemSounds.Exclamation.Play(); SystemSounds.Hand.Play();
| Send us feedback about this snippet » |





