Xamarin.Forms by Microsoft

<PackageReference Include="Xamarin.Forms" Version="4.4.0.991210-pre2" />

.NET API 1,173,616 bytes

 TypeConverter

public abstract class TypeConverter
Abstract base class whose subclasses can convert values between different types.
protected TypeConverter()

public virtual bool CanConvertFrom(Type sourceType)

When implemented in a derived class, returns a Boolean value that indicates whether or not the derived type converter can convert sourceType to its target type.

public virtual object ConvertFrom(object o)

Calls ConvertFrom with the current culture information and o.

public virtual object ConvertFrom(CultureInfo culture, object o)

When implemented in a derived class, converts an object that is a version of value and that can be cast to the target type.

public virtual object ConvertFromInvariantString(string value)

When overridden in a derived class, converts XAML extension syntax into instances of various Forms types.