本文介绍了C#中字符串的不可变的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

hi
任何人都可以向我解释字符串在c#中是不可变的"吗?

hi
Can any one explain me "string immutable in c#"

推荐答案

string orig = "Hello there!";
string copy = orig;
string replaced = orig.Replace("there", "World");
orig += " This is a test.";
Console.WriteLine(replaced);
Console.WriteLine(orig);
Console.WriteLine(copy);

输出为:

Hello World!
Hello there! This is a test.
Hello there!



这篇关于C#中字符串的不可变的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-14 08:34