Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


FormatInto

Writes the formatting result into an IOutput instance.
Read time 2 minutesLast updated 4 days ago

Definition

FormatInto(IOutput, string, Object[])

Writes the formatting result into an IOutput instance.
public void FormatInto(IOutput output, string format, params object[] args)

Parameters

output

The IOutput where the result is written to.

format

The format string.

The objects to format.

FormatInto(IOutput, string, IList<Object>)

Writes the formatting result into an IOutput instance.
public void FormatInto(IOutput output, string format, IList<object> args)

Parameters

output

The IOutput where the result is written to.

format

The format string.

The objects to format.

FormatInto(IOutput, IFormatProvider, string, IList<Object>)

Writes the formatting result into an IOutput instance.
public void FormatInto(IOutput output, IFormatProvider provider, string format, IList<object> args)

Parameters

output

The IOutput where the result is written to.

The IFormatProvider to use.

format

The format string.

The objects to format.

FormatInto(IOutput, IFormatProvider, Format, Object[])

Writes the formatting result into an IOutput instance.
public void FormatInto(IOutput output, IFormatProvider provider, Format format, params object[] args)

Parameters

output

The IOutput where the result is written to.

The IFormatProvider to use.

format

An instance of Format that was returned by Parser.ParseFormat.

The objects to format.

FormatInto(IOutput, IFormatProvider, Format, IList<Object>)

Writes the formatting result into an IOutput instance.
public void FormatInto(IOutput output, IFormatProvider provider, Format formatParsed, IList<object> args)

Parameters

output

The IOutput where the result is written to.

The IFormatProvider to use.

formatParsed

An instance of Format that was returned by Parser.ParseFormat.

The objects to format.