GeneratorPositionHelper.FromIndexAndOffset(Int32, Int32) Method
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.
Creates a GeneratorPosition value using provided values for index and offset. C# and Microsoft Visual Basic code should use GeneratorPosition(Int32,Int32) instead.
public:
static GeneratorPosition FromIndexAndOffset(int index, int offset);
static GeneratorPosition FromIndexAndOffset(int const& index, int const& offset);
public static GeneratorPosition FromIndexAndOffset(int index, int offset);
function fromIndexAndOffset(index, offset)
Public Shared Function FromIndexAndOffset (index As Integer, offset As Integer) As GeneratorPosition
Parameters
- index
-
Int32
int
The index value to create with.
- offset
-
Int32
int
The offset value to create with.
Returns
The created GeneratorPosition structure with the desired values.