Exemplo n.º 1
0
        static public string appendSpce(string str, int totalLen)
        {
            int i = 0;

            if (str == null || str == "")
            {
                str = "";
            }
            i = str.Length;
            PStr ps = PStr.b(str);

            for (; i < totalLen; i++)
            {
                ps.a(" ");
            }
            return(ps.e());
        }
Exemplo n.º 2
0
        public static PStr begin(params object[] objs)
        {
            PStr r2 = begin();

            return(r2.a(objs));
        }