Mono.CSharp.Evaluator.Quote C# (CSharp) 메소드

Quote() 정적인 개인적인 메소드

static private Quote ( string s ) : string
s string
리턴 string
        static string Quote(string s)
        {
            if (s.IndexOf ('"') != -1)
                s = s.Replace ("\"", "\\\"");

            return "\"" + s + "\"";
        }