C# StringWriter Write(String, Object, Object)
Description
StringWriter Write(String, Object, Object)
Writes
a formatted string to the text string or stream, using the same semantics
as the String.Format(String, Object, Object) method.
Syntax
StringWriter.Write(String, Object, Object)
has the following syntax.
public virtual void Write(
string format,/*from www . j a v a 2 s. c o m*/
Object arg0,
Object arg1
)
Parameters
StringWriter.Write(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.Write(String, Object, Object)
method returns
Example
using System;//from w w w . ja v a 2 s. c o m
using System.Globalization;
using System.IO;
class StrWriter
{
static void Main()
{
StringWriter strWriter = new StringWriter();
strWriter.Write("{0} is from java2s.com {1}",123D,234);
Console.WriteLine(strWriter.ToString());
}
}
The code above generates the following result.