I\'ve got a function in C#, and I\'d like to port it (among some other stuff) over to F#, just for the sake of doing it. Unfortunately, I just hit a case for which there see
Are you wanting to call this method from F# or C#? This hubFS post seems to indicate that F# doesn't support parameter arrays on the calling side, but I suspect if you use a normal type annotation for the parameter to make it an array, and also decorate it with ParamArrayAttribute, you should be able to call it with variable arguments from C#.
Can't say I've seen how to decorate a parameter with attributes in F# yet, but I can hunt around if you want... This blog post gives a couple of examples, but not at the parameter level.