"how to convert fsharplist back to list in c#?" Code Answer

2

easier than i thouglt...

starting with:

list<double> nicelist= new list<double>();

from list to fsharplist i did this:

fsharplist<double> nicesharplist = listmodule.ofseq(nicelist);

and to convert back from fsharplist to list i did:

list<double> nicelist= nicesharplist.tolist();
By Roshil K on July 2 2022

Answers related to “how to convert fsharplist back to list in c#?”

Only authorized users can answer the Search term. Please sign in first, or register a free account.