Lines(TextReader) Method
See Also 
System.IO Namespace > ExtensionMethods Class > Lines Method : Lines(TextReader) Method



textReader

Glossary Item Box

Syntax

Visual Basic (Declaration)  
<ExtensionAttribute()>
Public Overloads Shared Function Lines( _
   ByVal textReader As TextReader _
) As IEnumerable(Of String)
Visual Basic (Usage) Copy Code
Dim textReader As TextReader
Dim value As IEnumerable(Of String)
 
value = ExtensionMethods.Lines(textReader)
C#  
[Extension()]
public static IEnumerable<string> Lines( 
   TextReader textReader
)
C++/CLI  
[Extension()]
public:
static IEnumerable<String^>^ Lines( 
   TextReader^ textReader
) 

Parameters

textReader

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also