A
Alex Bilger
Is there a way to override Visual Basic Implicit
Conversions ?
for example:
Conversions ?
for example:
Is there a way to override Visual Basic Implicit
Conversions ?
for example:
----
Dim s As String
Dim i As Integer
i=s
s=i
---
is there a way for the system to call a customformatter or
any class that i code for the conversion string->integer
or integer->string without changing the VB Code
* "Alex Bilger said:Is there a way to override Visual Basic Implicit
Conversions ?
for example:
----
Dim s As String
Dim i As Integer
i=s
s=i
William Ryan said:My vote is for option strict and explicit conversion as well. As Dan
Appleman so elegantly put it "Option strict Off is Option Slow on" Strict
typing is well worth the hassle.