0
kicks
How to call a F# dll from C#
Step 1: Choose F# library project. Give the name as TestLibrary Step 2: : Add the below code namespace MySampleNamespace module public MyModule= let AddNumbers (a, b) = a + b The program is to add to numbers Step 3: : Build the solution. We will get TestLibrary...