Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


IFormatter

Converts an object to a string.
Read time 1 minuteLast updated 6 days ago

Definition

public interface IFormatter

Properties

Property

Description

CanAutoDetectAny extensions marked as IFormatter.CanAutoDetect will be called implicitly (when no formatter name is specified in the input format string). For example, "{0:N2}" will implicitly call extensions marked as IFormatter.CanAutoDetect. Implicit formatter invocations should not throw exceptions. With IFormatter.CanAutoDetect ==
false
, the formatter can only be called by its name in the input format string.
NameAn extension can be explicitly called by using its name. For example, "{0:list:N2}" will explicitly call the "list" extension.

Methods

Method

Description

TryEvaluateFormatWrites the current value to the output using the specified format.