❔ Play Overlapping Sound
i have a sound function that plays a sound from file, but if i call it while its playing it cuts off the last sound to play the new one?
.NET Framework 4.8
.NET Framework 4.8
void PlaySound(string sound)
{
var player = new System.Media.SoundPlayer(sound);
player.Play();
}