AvalonStudio.Debugging.CallStackViewModel.Update C# (CSharp) Method

Update() public method

public Update ( List frames ) : void
frames List
return void
		public void Update(List<Frame> frames)
		{
			if (frames != null)
			{
				Frames.Clear();

				foreach (var frame in frames)
				{
					Frames.Add(new FrameViewModel(_debugManager, frame));
				}
			}
		}