C# StringWriter WriteLine(String, Object, Object)
Description
StringWriter WriteLine(String, Object, Object)
Writes
a formatted string and a new line to the text string or stream, using the same
semantics as the String.Format(String, Object, Object) method.
Syntax
StringWriter.WriteLine(String, Object, Object)
has the following syntax.
public virtual void WriteLine(
string format,/*from w ww.j a v a2 s. c om*/
Object arg0,
Object arg1
)
Parameters
StringWriter.WriteLine(String, Object, Object)
has the following parameters.
format
- A composite format string (see Remarks).arg0
- The first object to format and write.arg1
- The second object to format and write.
Returns
StringWriter.WriteLine(String, Object, Object)
method returns
Example
using System;/*from ww w .j av a 2s . com*/
using System.Globalization;
using System.IO;
class StrWriter
{
static void Main()
{
StringWriter strWriter = new StringWriter();
strWriter.WriteLine("{0} and {1}",123,123);
Console.WriteLine(strWriter.ToString());
}
}
The code above generates the following result.