in VO, a strong typed method is declared like this:
Code: Select all
method MyMethod( cParam as string ) as void pascal class MyClass
So, if I define a method in X# as
Code: Select all
method MyMethod( cParam as string ) as void
And I can also write
Code: Select all
method MyMethod( uParam ) as int strict
I have seen, that even VO lets me define a method as
Code: Select all
method MyMethod( uParam ) as int pascal class MyClass
In VO it was easy: I have typed methods using "as pascal" whenever possible, and otherwise I have not typed them at all. But it seems there are several intermediate forms.
Thank you for any clarification
Wolfgang