ObjectExtensionsTryConvert(Object, Type, CultureInfo, Object) Method
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.0.0
public static bool TryConvert(
this Object? obj,
Type targetType,
CultureInfo culture,
out Object value
)
<ExtensionAttribute>
Public Shared Function TryConvert (
obj As Object,
targetType As Type,
culture As CultureInfo,
<OutAttribute> ByRef value As Object
) As Boolean
public:
[ExtensionAttribute]
static bool TryConvert(
Object^ obj,
Type^ targetType,
CultureInfo^ culture,
[OutAttribute] Object^% value
)
[<ExtensionAttribute>]
static member TryConvert :
obj : Object *
targetType : Type *
culture : CultureInfo *
value : Object byref -> bool
- obj Object
- The object to convert.
- targetType Type
- The desired type of the returned value.
- culture CultureInfo
- The culture to use for the conversion. If , then the InvariantCulture will be used.
- value Object
- When this method returns with result, then this parameter contains the result of the conversion.
Boolean, if
obj could be converted to
targetType, which is returned in the
value parameter; otherwise,
.In Visual Basic and C#, you can call this method as an instance method on any object of type
Object. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
The method firstly tries to use registered direct conversions between source and target types, then attempts to perform the conversion via IConvertible types and registered TypeConverters.
If these attempts fail, then the registered conversions tried to be used for intermediate steps, if possible. As an ultimate fallback, the String type is attempted to be used as intermediate conversion.
New conversions can be registered by the RegisterConversion extension methods.
The registered conversions are tried to be used for intermediate conversion steps if possible. For example, if a conversion is registered from
DateTime to
Int64,
then conversions from
DateTime to
Double becomes automatically available using the
Int64 type as an intermediate conversion step.