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

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -