示例#1
0
        public override string ToString()
        {
            var a = Left.Left + " " + Arrow + " " + Right.Right;

            if (string.IsNullOrEmpty(Label))
            {
                return(a);
            }
            return(a + ":" + Label.AddQuotesIfNecessary());
        }