private static int safeAudioLevel = 10;
if ( value <= safeAudioLevel )
public static void Main()
Headphones SonyZound = new Headphones();
SonyZound.MaxDecibels = 15;
Console.WriteLine(SonyZound.MaxDecibels);
SonyZound.MaxDecibels = 7;
Console.WriteLine(SonyZound.MaxDecibels);