vote up 0 vote down star

When I use Console.WriteLine to print a list, it defaults to only showing the first three elements. How do I get it to print the entire contents of the list?

flag
Perhaps you could show us the code you have written so far? – Mitch Wheat Nov 1 at 2:24

2 Answers

vote up 1 vote down

You can use the %A format specifier along with printf to get a 'beautified' list printout, but like Console.WriteLine (which calls .ToString()) on the object, it will not necessarily show all the elements. To get them all, iterate over the whole list. The code below shows a few different alternatives.

let smallList = [1; 2; 3; 4]
printfn "%A" smallList // often useful

let bigList = [1..200]
printfn "%A" bigList // pretty, but not all

printfn "Another way"
for x in bigList do 
    printf "%d " x
printfn ""

printfn "Yet another way"
bigList |> List.iter (printf "%d ")
printfn ""
link|flag
vote up 3 vote down

You can iterate over the it, using the List.iter function, and print each element:

let list = [1;2;3;4]
list |> List.iter (fun x -> printf "%d " x)

More info:

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.