StringParserFormat Method |
Applies the StringParser to the formatstring; and then calls string.Format on the result.
This method is equivalent to:
return string.Format(StringParser.Parse(formatstring), formatitems);
but additionally includes error handling.
Namespace: Altaxo.Main.ServicesAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static string Format(
string formatstring,
params Object[] formatitems
)
Parameters
- formatstring String
- The format string.
- formatitems Object
- The format arguments.
Return Value
StringThe formatted string.
See Also