Skip to content
Advertisement

How can I mimic a Javascript “spread operator” in C#?

I am following a tutorial on Dynamic Programming on youtube to understand more about Recursive functions, and I am stuck where a spread operator is used.

Code in JavaScript

JavaScript

This is the code in C# where I’m trying to replicate the function

JavaScript

EDIT: Should I use a Dictionary and use a key? I don’t understand how to work my way around this one.

JavaScript

EDIT:

JavaScript

Advertisement

Answer

There is no spread operator in c#, you could use the Append method in the System.Linq namespace. As this returns an IEnumerable<T> you’ll also need to call ToArray() afterwards.

This line in JS

JavaScript

Could be the following in c#

JavaScript

Note that your method always returns int[] or null, so the return type should be int[] not dynamic!

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement