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

IFormatter.CanAutoDetect

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

public bool CanAutoDetect;

Description

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.

If more than one registered IFormatter can auto-detect, the first one in the formatter list will win.