June 2003
Intermediate to advanced
800 pages
34h 20m
English
You want to create a class that can be converted to common data types such as Int32 and String.
Implement the IConvertible interface. Add conversion code for the supported data types, and throw an InvalidCastException for all unsupported data types.
The IConvertible interface defines 17 methods for converting an object into basic .NET types. The first method, GetTypeCode, simply returns a value from the System.TypeCode enumeration identifying the type, which will always be TypeCode.Object for your custom classes, as shown here:
Public Function GetTypeCode() As TypeCode _
Implements IConvertible.GetTypeCode
Return TypeCode.Object
End FunctionThe other 16 methods perform the actual conversions and ...
Read now
Unlock full access