Malevich.StreamCombiner.ReadLines C# (CSharp) Méthode

ReadLines() public méthode

Used to enumerate every line in the stream until EOF.
public ReadLines ( ) : IEnumerable
Résultat IEnumerable
		public IEnumerable<string> ReadLines()
		{
			for (string line = ReadLine(); line != null; line = ReadLine())
				yield return line;
			yield break;
		}