StringBuilder对象的常用方法 c#1614651638
2023-04-19 09:22:48 阅读次数:306
StringBuilder
StringBuilder对象的常用方法 c#1614651638
演练
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace stringbuilder演练
{
class Program
{
static void Main(string[] args)
{
// 新建一个对象
StringBuilder sb = new StringBuilder();
// 添加内容
sb.Append("老妹儿你慢点啊");
sb.Append("咱俩来破个闷儿哪");
// 插入内容
sb.Insert(3, "贾玲");
// 删除内容
sb.Remove(3, 2);
// 输出内容
Console.WriteLine(sb);
// 卡顿
Console.ReadKey();
}
}
}
版权声明:本文内容来自第三方投稿或授权转载,原文地址:https://blog.51cto.com/u_13137233/3410095,作者:ifubing,版权归原作者所有。本网站转在其作品的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如因作品内容、版权等问题需要同本网站联系,请发邮件至ctyunbbs@chinatelecom.cn沟通。
上一篇:设计模式之观察者模式(Observer)摘录
下一篇:docker学习-构建镜像