string text = "ABC ABC ABC"; ; string replacement = "X"; ; string result = text.Replace("C", replacement); ; ; Console.WriteLine(result); // ABX ABX ABX ...
確定! 回上一頁