/// <summary> /// Constructs a <code>Status</code> object from a low-level <see cref="Unsafe.MPI_Status"/> structure. /// </summary> internal Status(Unsafe.MPI_Status status) { this.status = status; }
/// <summary> /// Constructs a <code>Status</code> object from a low-level <see cref="Unsafe.MPI_Status"/> structure /// and a count of the number of elements received. /// </summary> internal CompletedStatus(Unsafe.MPI_Status status, int count) : base(status) { this.count = count; }