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

ReadOption() private static method

private static ReadOption ( string name ) : bool
name string
return bool
        private static bool ReadOption(string name) {
#if SILVERLIGHT
            return false;
#else
            string envVar = ReadString(name);
            return envVar != null && envVar.ToLowerInvariant() == "true";
#endif
        }