Tutorial by Examples

Given the following CSV file: Id,Name 1,"Joel" 2,"Adam" 3,"Ryan" 4,"Matt" You can read the data with the following script: #r "FSharp.Data.dll" open FSharp.Data type PeopleDB = CsvProvider<"people.csv"> let people = Pe...
The WMI type provider allows you to query WMI services with strong typing. To output the results of a WMI query as JSON, open FSharp.Management open Newtonsoft.Json // `Local` is based off of the WMI available at localhost. type Local = WmiProvider<"localhost"> let data = ...

Page 1 of 1