private Format ( StringBuilder sb, string format, object arg, IFormatProvider formatProvider, int &maxLength ) : bool | ||
sb | StringBuilder | String builder to which formatted string should be appended. |
format | string | A format string containing formatting specifications. |
arg | object | An object to format. |
formatProvider | IFormatProvider | An object that supplies format information about the current instance. |
maxLength | int | /// Maximum number of characters allowed to the formatter. Formatting should fail (and return false) /// if this number of characters is breached. Multi-lined formatters should ignore this parameter. /// Negative value indicates that formatter has unlimited space available. On output contains remaining number of characters available. /// |
return | bool |