Converts the given object to the type of this converter, using the specified context and culture information.

Namespace: MonoSoftware.Core
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public override Object ConvertFrom(
	ITypeDescriptorContext context,
	CultureInfo culture,
	Object value
)
Visual Basic
Public Overrides Function ConvertFrom ( 
	context As ITypeDescriptorContext,
	culture As CultureInfo,
	value As Object
) As Object
Visual C++
public:
virtual Object^ ConvertFrom(
	ITypeDescriptorContext^ context, 
	CultureInfo^ culture, 
	Object^ value
) override
F#
abstract ConvertFrom : 
        context : ITypeDescriptorContext * 
        culture : CultureInfo * 
        value : Object -> Object 
override ConvertFrom : 
        context : ITypeDescriptorContext * 
        culture : CultureInfo * 
        value : Object -> Object 

Parameters

context
Type: System.ComponentModel..::..ITypeDescriptorContext
An System.ComponentModel.ITypeDescriptorContext that provides a format context.
culture
Type: System.Globalization..::..CultureInfo
The System.Globalization.CultureInfo to use as the current culture.
value
Type: System..::..Object
The System.Object to convert.

Return Value

Type: Object
An System.Object that represents the converted value.

See Also