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:
C#
return string.Format(StringParser.Parse(formatstring), formatitems);
but additionally includes error handling.

Namespace: Altaxo.Main.Services
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static string Format(
	string formatstring,
	params Object[] formatitems
)

Parameters

formatstring  String

[Missing <param name="formatstring"/> documentation for "M:Altaxo.Main.Services.StringParser.Format(System.String,System.Object[])"]

formatitems  Object

[Missing <param name="formatitems"/> documentation for "M:Altaxo.Main.Services.StringParser.Format(System.String,System.Object[])"]

Return Value

String

[Missing <returns> documentation for "M:Altaxo.Main.Services.StringParser.Format(System.String,System.Object[])"]

See Also