You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
List returned by Window* methods should be isolated from each other.
With current implementation, modifying one window will modify the next windows accordingly:
varsequence=Enumerable.Repeat(0,3);foreach(varwindowinsequence.Window(2)){window[1]=1;// modify the last element// on second iteration window[0] is 1 and this failAssert.That(window[0],Is.EqualTo(0));}