System.SequencePosition
Represents position in non-contiguous set of memory.
Properties of this type should not be interpreted by anything but the type that created it.
namespace System
{
public readonly struct SequencePosition : IEquatable<SequencePosition>
{
public SequencePosition(object object, int integer);
public object GetObject();
public int GetInteger();
public bool Equals(SequencePosition other);
}
}