Version: Unity 6 (6000.0)
LanguageEnglish
  • C#

TypeUtility.InstantiateArray

Declaration

public static TArray InstantiateArray(int count);

Parameters

Description
count The size of the array to instantiate.

Returns

TArray The array newly created array.

Description

Creates a new instance of an array with the given count.


Declaration

public static TArray InstantiateArray(Type derivedType, int count);

Parameters

Description
derivedType The type we want to create a new instance of.
count The size of the array to instantiate.

Returns

TArray The array newly created array.

Description

Creates a new instance of an array with the given type and given count.