Click here to Skip to main content
15,881,812 members
Articles / Programming Languages / Visual Basic
Tip/Trick

Changing Type

Rate me:
Please Sign up or sign in to vote.
4.00/5 (1 vote)
15 Feb 2010CPOL 7.4K   5  
Sometimes you need to change objects type to another type.Convert.ChangeType does this job for you. But when you use Nullable(Of T), this function throws an exception.You can use the following function to change type(including Nullable types) safely... Private Function CType2(ByVal...
Sometimes you need to change objects type to another type.Convert.ChangeType does this job for you. But when you use Nullable(Of T), this function throws an exception.
You can use the following function to change type(including Nullable types) safely...

Private Function CType2(ByVal refObject As Object, ByVal destType As System.Type) As Object
    If destType Is Nothing Then Throw New ArgumentException("Destination Type is null")
    If refObject.GetType() Is destType Then Return refObject
    If destType.IsGenericType And destType.GetGenericTypeDefinition().Equals(GetType(Nullable(Of ))) Then
        If refObject Is Nothing Then Return Nothing
        Dim c As New System.ComponentModel.NullableConverter(destType)
        destType = c.UnderlyingType
    End If
    Return Convert.ChangeType(refObject, destType)
End Function

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Adasoft
Turkey Turkey
I'm a software developer at Adasoft.
My specialists is on Web and Silverlight.

Especially i like wroting javascript codes(It is much harder,but gets more satisfaction Smile | :) )

You can reach my tips at my homepage(Turkish only)

Comments and Discussions

 
-- There are no messages in this forum --