How to call a F# dll from C#

added by jacobsebastian
8/20/2011 1:12:45 AM

312 Views

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...


0 comments