I know this will have been asked many times but I have looked at all docs and I still don’t get how to go about this.
I want to create an array of strings in C#.
This is how I would do it in javascript:
var strings = ["a", "b", "c"];
How would I go about this in C#? It’s for collision detection and I would rather use an array then do something like if (tag == "foo" || tag == "bar" .......