Esempio n. 1
0
        public override string ToString()
        {
            string text  = sources.NullOrEmpty() ? "null" : sources[0].ToString();
            int    num   = (sources != null) ? sources.Count : 0;
            string text2 = (target == null) ? "null" : target.ToString();

            return(text + "(" + num + ")->" + text2);
        }
Esempio n. 2
0
        public override string ToString()
        {
            string text  = (!sources.NullOrEmpty()) ? sources[0].ToString() : "null";
            int    num   = (sources != null) ? sources.Count : 0;
            string text2 = (target != null) ? target.ToString() : "null";

            return(text + "(" + num + ")->" + text2);
        }