Boo.Lang.Compiler.CompilerErrorFactory.StripSurroundingParens C# (CSharp) Метод

StripSurroundingParens() приватный статический Метод

private static StripSurroundingParens ( string code ) : string
code string
Результат string
        private static string StripSurroundingParens(string code)
        {
            return code.StartsWith("(") ? code.Substring(1, code.Length - 2) : code;
        }
CompilerErrorFactory