String array tags JS/US to C#

Hi,

Anyone know this one, I cant figure it out?

var tags:String[] = ["Wall", "Enemy"];

Thanks.

You want this line in C#?

string[] tags = new string[] { "Wall", "Enemy" };

Ah yes that’s perfect, thanks LightStriker!