Version: Unity 6 (6000.0)
LanguageEnglish
  • C#

TypeUtility.Instantiate

Declaration

public static T Instantiate();

Returns

T A new instance of the T.

Description

Creates a new instance of the specified T.


Declaration

public static T Instantiate(Type derivedType);

Parameters

Description
derivedType The type we want to create a new instance of.

Returns

T a new instance of the T type.

Description

Creates a new instance of the given type type and returns it as T.