C# Class BuildIt.General.UI.Converters.StringFormatConverter

Converts a value to a string using a format string.
Inheritance: IValueConverter
Datei anzeigen Open project: builttoroam/BuildIt

Public Methods

Method Description
Convert ( object value, Type targetType, object parameter, CultureInfo culture ) : object

Converts a value to a string by formatting it.

Method Details

Convert() public method

Converts a value to a string by formatting it.
public Convert ( object value, Type targetType, object parameter, CultureInfo culture ) : object
value object The value to convert.
targetType System.Type The target type of the conversion.
parameter object The format string.
culture System.Globalization.CultureInfo The culture to use for conversion.
return object