I've already added the fslib.dll library, which removed me an error but i'm still not able to do wath i want.
fsharpFile.fs
let returnAList (number:int) = [number;number;number];;
csharpFile.cs
List<int> myList = ProjectFsharp.fsharpFile.returnAList(5);
but that line on C# file gives me: "Cannot implicitly convert type 'Microsoft.Fsharp.Collections.List<int>' to 'system.Collections.Generic.List<int>'"
Even if i explicitly put the cast it gives an error. any way to fix this?
Also, if i wanted to receive a tuple list from F#, how would i receive it in C#? Should i had to make an object with the same types of the tuple elements of the list? or ? Little example please? :)