Converting a Javascript Array to c#

Any ideas how I can convert this to C#?

      //Add the current block to the elimination array.
                        var TempArray = new Array(Elimination);
	                    TempArray.Add(c);
	                    Elimination = TempArray.ToBuiltin(int);
	                    SearchOver = false;

Sounds like;

List<Elimination> tempArray = new List<Elimination>();
tempArray.Add(c);

But it would help to know what “Elimination” is, or what is “SearchOver”.

Awsome! I’ll give this a shot!

I’ll try to patch together as much as I can… I am trying to port over a javascript asset store starter pack to c#… I just cannot read script, and pretty much everything I have is in C#…

Thanks!