NIndex Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
NIndex(Index) | |
NIndex(IntPtr, Boolean) |
Construct an NIndex using a value and indicating if the NIndex is from the start or from the end. |
NIndex(Index)
- Source:
- NIndex.cs
public:
NIndex(Index index);
public NIndex (Index index);
new System.Buffers.NIndex : Index -> System.Buffers.NIndex
Public Sub New (index As Index)
Parameters
Remarks
If the NIndex constructed from the end, index value 1 means pointing at the last element and index value 0 means pointing at beyond last element.
Applies to
NIndex(IntPtr, Boolean)
- Source:
- NIndex.cs
public NIndex (IntPtr value, bool fromEnd = false);
new System.Buffers.NIndex : nativeint * bool -> System.Buffers.NIndex
Public Sub New (value As IntPtr, Optional fromEnd As Boolean = false)
Parameters
- value
-
IntPtr
nativeint
The index value. it has to be zero or positive number.
- fromEnd
- Boolean
Indicating if the index is from the start or from the end.
Remarks
If the NIndex constructed from the end, index value 1 means pointing at the last element and index value 0 means pointing at beyond last element.