C# Remove 兩種刪除字符方法

namespace ConsoleApplication1 { class Program{ static void Main(string[] args) { //聲明一個Str1字符串並賦值。 string str1 = "刪除字符"; //聲明一個Str2字符串,並使用Remove方法從字符串str1的索引從2開始刪除。 string str2 = str1.Remove(2); //聲明一
相關文章
相關標籤/搜索