4 using System.Globalization;
6 namespace SiliconStudio.Presentation.ValueConverters
18 public const string NullObjectType =
"(null)";
21 public override object Convert(
object value, Type targetType,
object parameter, CultureInfo culture)
23 return value == null ? null : value.GetType();
This converter convert any object to its type. It accepts null and will return null in this case...
override object Convert(object value, Type targetType, object parameter, CultureInfo culture)