string A = "myString";
string B;
有没有办法根据A的数据来发起B,让B的值随着A的变化而变化。
B = capture change of A?
编辑:我最初的帖子不完整且具有误导性,我现在找到了答案。我的问题仍然是观察者模式的副本
尝试这个
B = A.Substring(0,2);
它从索引 0 和长度为 2B
的子字符串开始A
您可以尝试以下示例
string A = "myString";
string B;
if (A.StartsWith("my"))
{
B = A.Substring(0, 2);//first two elements of A
}
看看这个Substring 方法
当然,使用String.Substring
:
B = A.Substring(0,2); //"my"