toStr() public method

public toStr ( ) : string
return string
Example #1
0
        public static string plus(string self, object obj)
        {
            if (obj == null)
            {
                return(String.Concat(self, "null"));
            }
            string x = FanObj.toStr(obj);

            if (x == "")
            {
                return(self);
            }
            return(String.Concat(self, x));
        }