I have the following declaration in F#:
type ConstArg =
| Bool of bool
| CharArray of char[]
member Lambda (ConstArg : ConstArg[]) = ...
In C#, I have constructed a char[] array of two values:
char[][] list = new char[][] {firstArray, secondArray};
I do want to call .Lambda(list) but I am unable to convert list into ConstArg[]