Antlr4.Tool.DOTGenerator.GetEdgeLabel C# (CSharp) Méthode

GetEdgeLabel() protected méthode

protected GetEdgeLabel ( string label ) : string
label string
Résultat string
        protected virtual string GetEdgeLabel(string label)
        {
            label = label.Replace("\\", "\\\\");
            label = label.Replace("\"", "\\\"");
            label = label.Replace("\n", "\\\\n");
            label = label.Replace("\r", "");
            return label;
        }