BufferedReadStream.ReadLine(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Reads a line. A line is defined as a sequence of characters followed by a carriage return immediately followed by a line feed. The resulting string does not contain the terminating carriage return and line feed.
public:
System::String ^ ReadLine(int lengthLimit);
public string ReadLine (int lengthLimit);
member this.ReadLine : int -> string
Public Function ReadLine (lengthLimit As Integer) As String
Parameters
- lengthLimit
- Int32
Maximum allowed line length.
Returns
A line.