3 overrides of ChangeType
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\VBBinder.vb (1)
1756Public Overrides Function ChangeType(ByVal value As Object, ByVal typ As Type, ByVal culture As CultureInfo) As Object
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\DefaultBinder.cs (1)
752public override object ChangeType(object value, Type type, CultureInfo? cultureInfo)
System.Reflection.MetadataLoadContext (1)
System\Reflection\DefaultBinder.cs (1)
268public override object ChangeType(object value, Type type, CultureInfo? cultureInfo) => throw new InvalidOperationException(SR.Arg_InvalidOperation_Reflection);
1 reference to ChangeType
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\RuntimeType.cs (1)
889value = binder.ChangeType(value, this, culture);