How to

play Windows sounds

Published: 14. December 2008 | Updated: 14. December 2008
License: Microsoft Public License (MS-PL)
Categories: Windows
Tags: C# Media
Was this snippet helpful for you? YESYES / NONO

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 »



Related Snippets: