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 -

python - Django-cities exits with "killed" -

python - How to get a widget position inside it's layout in Kivy? -