ThePig
Registered
- Joined
- Dec 20, 2011
- Messages
- 61,076
- Reaction score
- 1,573
you should always handle the exceptions
try
{
Dance(music);
}
catch(DancingNotPossible e)
{
Console.WriteLine("You cannot dance, you're at work");
//TunIn(ah.fm); //possible fix suggested, suggested attributes "headphones" or "earbuds" should be needed
}
i added something