Ejemplo n.º 1
0
        public static void Print(params object[] vars)
        {
            string str = string.Empty;

            foreach (var item in vars)
            {
                str += StringConvertor.ToSting(item) + " ";
            }
            System.Console.WriteLine(str);
        }
Ejemplo n.º 2
0
 public static void Print(object value)
 {
     System.Console.WriteLine(StringConvertor.ToSting(value));
 }