MonoMobile.Views.FloatConverter.Convert C# (CSharp) Méthode

Convert() public méthode

public Convert ( object value, Type targetType, object parameter, CultureInfo culture ) : object
value object
targetType System.Type
parameter object
culture System.Globalization.CultureInfo
Résultat object
		public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
		{
			if (value == null)
				return string.Empty;
			
		//	if (parameter is FloatElement)
		//		return value;

			return value.ToString();
		}