Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System/System.Diagnostics/BooleanSwitch.cs')
-rwxr-xr-xmcs/class/System/System.Diagnostics/BooleanSwitch.cs59
1 files changed, 0 insertions, 59 deletions
diff --git a/mcs/class/System/System.Diagnostics/BooleanSwitch.cs b/mcs/class/System/System.Diagnostics/BooleanSwitch.cs
deleted file mode 100755
index e4f83292d55..00000000000
--- a/mcs/class/System/System.Diagnostics/BooleanSwitch.cs
+++ /dev/null
@@ -1,59 +0,0 @@
-//
-// System.Diagnostics.BooleanSwitch.cs
-//
-// Author:
-// John R. Hicks (angryjohn69@nc.rr.com)
-//
-// (C) 2001
-//
-
-namespace System.Diagnostics
-{
- /// <summary>
- /// Provides a simple on/off switch that controls debuggina
- /// and tracing output
- /// </summary>
- public class BooleanSwitch : Switch
- {
- /// <summary>
- /// Initializes a new instance
- /// </summary>
- public BooleanSwitch(string displayName, string description)
- : base(displayName, description)
- {
- SwitchSetting = (int)BooleanSwitchSetting.False;
- }
-
- // =================== Properties ===================
-
- /// <summary>
- /// Specifies whether the switch is enabled or disabled
- /// </summary>
- public bool Enabled
- {
- get
- {
- if((int)BooleanSwitchSetting.False == SwitchSetting) {
- return false;
- }
- else {
- return true;
- }
- }
- set
- {
- if(value) {
- SwitchSetting = (int)BooleanSwitchSetting.True;
- }
- else {
- SwitchSetting = (int)BooleanSwitchSetting.False;
- }
- }
- }
-
- private enum BooleanSwitchSetting : int {
- True = 1, False = 0
- }
- }
-
-}