Method | Description | |
---|---|---|
Format ( IFormatProvider provider, string format, object>.IDictionary |
Formats the string using the placeholder for the property names.
|
|
Format ( IFormatProvider provider, string format, object values ) : string |
Formats the string using the placeholder for the property names.
|
|
Format ( string format, object>.IDictionary |
Formats the string using the placeholder for the property names.
|
|
Format ( string format, object values ) : string |
Formats the string using the placeholder for the property names.
|
|
TokenizeString ( string format ) : string |
Returns the format string with the tokens replaced as ordinals. Exposed for developer benefit. Most likely used only in debugging.
|
|
TokenizeString ( string format, IEnumerable |
Returns the format string with the tokens replaced as ordinals. Exposed for developer benefit. Most likely used only in debugging.
|
Method | Description | |
---|---|---|
AnonymousObjectToDictionary ( object values ) : object>.IDictionary |
||
BuildNewToken ( string fullToken, string name, int index ) : string | ||
IndexOfName ( IList |
||
ParseName ( string fullToken ) : string |
public static Format ( IFormatProvider provider, string format, object>.IDictionary |
||
provider | IFormatProvider | The provider to use for formatting dates and numeric values. |
format | string | The string to format. |
values | object>.IDictionary | The dictionary to pull the values from. |
return | string |
public static Format ( IFormatProvider provider, string format, object values ) : string | ||
provider | IFormatProvider | The provider to use for formatting dates and numeric values. |
format | string | The string to format. |
values | object | The object to pull the values from. Usually an anonymous type. |
return | string |
public static Format ( string format, object>.IDictionary |
||
format | string | The string to format. |
values | object>.IDictionary | The dictionary to pull the values from. |
return | string |
public static Format ( string format, object values ) : string | ||
format | string | The string to format. |
values | object | The object to pull the values from. Usually an anonymous type. |
return | string |
public static TokenizeString ( string format ) : string | ||
format | string | The string to format. |
return | string |
public static TokenizeString ( string format, IEnumerable |
||
format | string | The string to format. |
tokens | IEnumerable |
The tokens that were extracted from the format string. |
return | string |