Is there an equivalent for the C# 4 'dynamic' keyword when using 'type safe VB.Net', i.e. with Option Strict On?
|
|
The equivalent is Object in VB.NET but with |
|||
|
|
|
Hmya, VB.NET always had the "dynamic" feature built in. This syntax was supported forever:
The dynamic keyword was C#'s way of catching up to what VB.NET could do for a long time. Nevertheless, VB.NET version 10 did gain some additional capabilities, it is using the DLR as well. Which allows you to interop with IronPython and IronRuby. C# copied many other VB.NET features. Like optional parameters and support for properties that take arguments. The syntax is exactly the same, use the Dim keyword without As. You will however have to use Option Strict Off, Option Infer On can soften that blow a bit. It does show that C# adding the dynamic keyword was a pretty good move. |
|||||||||||||||||
|
|
You can turn Option Infer On and Option Strict Off and still have something very close. |
|||
|
|
|
There are enough ways to handle methods and properties with late binding COM objects and type safe(option strict on). This when using the Microsoft.VisualBasic.Interaction.CallByName and System.Type.InvokeMember methods. (Or create a seperate "partial" file where option strict is off). But to handle events with late binding from VB.Net is not as straightforward as with the dynamic type in C#. You can check this "hack" for that here http://www.codeproject.com/Articles/563298/Dynamic-Events-in-VB-Net |
|||
|
|