I know that the f# list is not the same at the c# List. What do I need to do to be able to pass a list of ints from a c# application to an f# library? I'd like to be able to use pattern matching on the data once it's in the f# code.
|
|
You can reference C# Assemblies from F# projects. Expose your list via a referenced assembly. |
||
|
|
|
|
You can use
to convert any |
||
|
|
|
You can pass a sequence of ints - it's basically anything that supports |
||
|
|
|
|
Here is how I ended up doing it. The FSharp code:
The c Sharp code:
|
||
|
|
