LongoMatch.MainClass.ShowCodecsDialog C# (CSharp) Method

ShowCodecsDialog() static private method

static private ShowCodecsDialog ( ) : void
return void
		static void ShowCodecsDialog ()
		{
			CodecsChoiceDialog ccd = new CodecsChoiceDialog ();
			int response = ccd.Run ();
			if (response == (int)ResponseType.Accept) {
				try {
					System.Diagnostics.Process.Start (Constants.WEBSITE);
				} catch {
				}
			}
			ccd.Destroy ();
		}