码迷,mamicode.com
首页 > 其他好文 > 详细

StringBuilder类

时间:2017-07-08 12:26:16      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:ogr   space   pre   append   logs   ace   code   new   app   

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            StringBuilder sb = new StringBuilder();

            sb.Append("1");
            sb.ToString();
            Console.WriteLine(sb);

            sb.Append("2");
            sb.ToString();

            sb.Append("3");
            sb.ToString();

            sb.AppendLine("4");
            sb.ToString();

            sb.AppendLine("5");
            sb.ToString();

            sb.AppendFormat("{0}{1}", 45, 56);
            sb.ToString();
        }
    }
}

 

StringBuilder类

标签:ogr   space   pre   append   logs   ace   code   new   app   

原文地址:http://www.cnblogs.com/pyGIS/p/7136269.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!