I'm coming from Python and don't understand the following syntax in C#:
Sprite[] sprites = Resources.LoadAll<Sprite>("Textures");
I'm instantiating a list of sprite objects and setting it to the output of Resources.LoadAll()
.
What is the < >
operator?
I'm trying to look it up, the proper name would help.