/// <summary>
 /// Initializes a new instance of the <see cref="MemoryDebugView2D{T}"/> class with the specified parameters.
 /// </summary>
 /// <param name="span">The input <see cref="Span2D{T}"/> instance with the items to display.</param>
 public MemoryDebugView2D(Span2D <T> span)
 {
     this.Items = span.ToArray();
 }