我有一個C#類返回一個列表,使用System.Collections.Generic列表不是F#名單System.Collections.Generic列表和F#
我想重複好像列表中找到對象或無法找到它。這是我如何在C#中完成的。
#light
open System.Collections.Generic
let genList = new List<int>()
genList.Add(1)
genList.Add(2)
genList.Add(3)
for x in genList do
printf "%d" x
我是新來的F#。什麼是#light(您的示例中的第一行)? – octopusgrabbus 2016-07-25 18:32:54