Version: Unity 6.7 Alpha (6000.7)
LanguageEnglish
  • C#

IFormatter

interface in Unity.SmartStrings.Core.Extensions

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

Converts an object to a string.

Properties

Property Description
CanAutoDetect Any 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.
Name An extension can be explicitly called by using its name. For example, "{0:list:N2}" will explicitly call the "list" extension.

Public Methods

Method Description
TryEvaluateFormat Writes the current value to the output using the specified format.