Fan.Sys.StrBuf.add C# (CSharp) Méthode

add() public méthode

public add ( object x ) : StrBuf
x object
Résultat StrBuf
        public StrBuf add(object x)
        {
            string s = (x == null) ? "null" : toStr(x);
              sb.Append(s);
              return this;
        }