4 using System.Globalization;
6 namespace SiliconStudio.Presentation.ValueConverters
19 public const string NullObjectType =
"(null)";
22 public override object Convert(
object value, Type targetType,
object parameter, CultureInfo culture)
24 return value == null ? NullObjectType : value.GetType().Name;
This converter convert any object to a string representing the name of its type (without assembly or ...
override object Convert(object value, Type targetType, object parameter, CultureInfo culture)