Monobjc.Utils.ImplicitMethodBinder.ChangeType C# (CSharp) Method

ChangeType() public method

Changes the type of the given Object to the given Type.
public ChangeType ( object value, Type type, CultureInfo culture ) : object
value object The object to change into a new Type. ///
type System.Type The new Type that will become. ///
culture System.Globalization.CultureInfo An instance of that is used to control the coercion of data types. If is null, the for the current thread is used. /// Note: /// For example, this parameter is necessary to convert a /// String that represents 1000 to a Double value, because 1000 is represented differently by different cultures. ///
return object
		public override object ChangeType (object value, Type type, CultureInfo culture)
		{
			throw new NotImplementedException ();
		}