StringReader Constructor (String^)
.NET Framework (current version)
Initializes a new instance of the StringReader class that reads from the specified string.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- s
-
Type:
System::String^
The string to which the StringReader should be initialized.
| Exception | Condition |
|---|---|
| ArgumentNullException | The s parameter is null. |
The following table lists examples of other typical or related I/O tasks.
To do this... | See the example in this topic... |
|---|---|
Create a text file. | |
Write to a text file. | |
Read from a text file. | |
Append text to a file. | |
Get the size of a file. | |
Get the attributes of a file. | |
Set the attributes of a file. | |
Determine if a file exists. | |
Read from a binary file. | |
Write to a binary file. |
This code example is part of a larger example provided for the StringReader class.
// From textReaderText, create a continuous paragraph // with two spaces between each sentence. String^ aLine; String^ aParagraph; StringReader^ strReader = gcnew StringReader( textReaderText ); while ( true ) { aLine = strReader->ReadLine(); if ( aLine != nullptr ) { aParagraph = String::Concat( aParagraph, aLine, " " ); } else { aParagraph = String::Concat( aParagraph, "\n" ); break; } } Console::WriteLine( "Modified text:\n\n{0}", aParagraph );
Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: