Posts by Vitor • 1 point
1 post
-
0
votes3
answers1171
viewsA: Break a txt file into multiple items in a string list
TextReader _Reader = new StreamReader(@"C:\ArquivoTexto.txt"); string[] _Splitado = _Reader.ReadToEnd().Split('|'); List<string> _Lista = new List<string>(_Splitado); Does this solve?…