# RangeInt

> Describes an integer range.

## Definition

* **Type:** Struct
* **Namespace:** [UnityEngine](/engine/6000.7/script-reference/unityengine.md)
* **Assembly:** UnityEngine.CoreModule

```csharp
public struct RangeInt
```

## Fields

| Value                                                                    | Description                                                                                                 |
| ------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- |
| [length](/engine/6000.7/script-reference/unityengine/rangeint/length.md) | The length of the range.                                                                                    |
| [start](/engine/6000.7/script-reference/unityengine/rangeint/start.md)   | The starting index of the range, where 0 is the first position, 1 is the second, 2 is the third, and so on. |

## Constructors

| Constructor                                                                                         | Description                                                                                                           |
| --------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- |
| [RangeInt(System.Int32,System.Int32)](/engine/6000.7/script-reference/unityengine/rangeint/ctor.md) | Constructs a new [RangeInt](/engine/6000.7/script-reference/unityengine/rangeint.md) with given start, length values. |

## Properties

| Property                                                           | Description                                 |
| ------------------------------------------------------------------ | ------------------------------------------- |
| [end](/engine/6000.7/script-reference/unityengine/rangeint/end.md) | The end index of the range (not inclusive). |
