C# StringWriter Write(String, Object[]) Array
Description
StringWriter Write(String, Object[])
Writes a formatted
string to the text string or stream, using the same semantics as the String.Format(String,
Object[]) method.
Syntax
StringWriter.Write(String, Object[])
has the following syntax.
public virtual void Write(
string format,
params Object[] arg
)
Parameters
StringWriter.Write(String, Object[])
has the following parameters.
format
- A composite format string (see Remarks).arg
- An object array that contains zero or more objects to format and write.
Returns
StringWriter.Write(String, Object[])
method returns
Example
using System;/*w w w .ja v a 2s . com*/
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.