Microsoft.Scripting.DebugOptions.ReadDebugOption C# (CSharp) Method

ReadDebugOption() private method

private ReadDebugOption ( string name ) : bool
name string
return bool
        private static bool ReadDebugOption(string name) {
#if DEBUG
            return ReadOption(name);
#else
            return false;
#endif
        }