In LINQPad , what is the equivalent of C#'s .Dump() method in F#? -
in linqpad , equivalent of c#'s .dump() method in f#?
for example, quickest way dump below c# in f# syntax?
var nums = new list<int> { 1, 2, 3, 4, 5 }; nums.dump();
and
let nums = [1; 2; 3; 4; 5]
this works me:
let nums = [1; 2; 3; 4; 5] nums.dump()
Comments
Post a Comment