Grows a list to the specified size, if it isn’t already greater than or equal to the specified size.
| Number | Name | Object Type | Description | Optional |
|---|---|---|---|---|
| 1 | List | List<object> | List of objects. | No |
| 2 | Size | System.Int32 | New size to grow list to | No |
| Number | Name | Object Type | Description |
|---|---|---|---|
| 1 | New List | List<object> | A new list that has length equal to the input ‘Size’. Any indeces beyond the original number are filled with ‘null’ objects. |
