Click or drag to resize

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.Services
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static string Format(
	string formatstring,
	params Object[] formatitems
)

Parameters

formatstring  String
The format string.
formatitems  Object
The format arguments.

Return Value

String
The formatted string.
See Also