如何从一个字符串复制到另一个字符串从所需位置到结尾?

Bot*_* FM 2 c# string

假设我有:

string abc="Your name = Hello World";
Run Code Online (Sandbox Code Playgroud)

使用长度函数我匹配= 运算符位置的存在,但是如何=将此字符串之后的所有单词(如"Hello Word")复制到另一个单词?

Adi*_*l B 5

string abc="Your name = Hello World";
abc.Substring(abc.IndexOf("=")+1); //returns " Hello World"
Run Code Online (Sandbox Code Playgroud)