What you’re WriteLine
ing is a value of List<string>.ToString()
, which is not what you want. Try foreach
ing over the test
list and WriteLine
each line separately.
What you’re WriteLine
ing is a value of List<string>.ToString()
, which is not what you want. Try foreach
ing over the test
list and WriteLine
each line separately.