Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there an equivalent for the C# 4 'dynamic' keyword when using 'type safe VB.Net', i.e. with Option Strict On?

share|improve this question
1  
VB is type safe whether Option Strict on On or Off. Read about the meaning here msdn.microsoft.com/en-us/library/hbzz1a9a(VS.80).aspx – John K May 22 '10 at 22:39
@jdk ok I guess I'll have to agree. However I meant compile-time checked type safety, as you might have guessed... – jeroenh May 23 '10 at 22:56
@jdk: the definition of type safety that everyone uses when talking about programming languages is this one: en.wikipedia.org/wiki/Type_safety – Mauricio Scheffer Jul 27 '10 at 1:18
@Mauricio: I cringe slightly when Wiki is cited, however in context of the author's question of .NET programming Microsoft's definition that I originally linked to suffices more than enough as they are the creators of the framework and semantics that go with it. – John K Jul 27 '10 at 1:43
2  
The Microsoft VB spec lead has just blogged about this idea. The provisional evaluation from the VB team is "VB has always had its own form late-binding via Object. While it’s a shame that you can’t scope your late-binding smaller than file granularity, this doesn’t seem a big enough problem to justify a second form of late-binding." Dear reader, if you feel strongly about this why not leave a comment on the blog, or on the Microsoft Connect issue mentioned in my earlier comment. – MarkJ Jan 6 '11 at 10:17
show 5 more comments

4 Answers

up vote 18 down vote accepted

The equivalent is Object in VB.NET but with Option Strict Off. With Option Strict On there's no equivalent. Put another way the dynamic keyword brings Option Strict Off equivalent functionality to C#.

share|improve this answer
That's what I was afraid off, thanks for confirming this. – jeroenh May 23 '10 at 23:03

Hmya, VB.NET always had the "dynamic" feature built in. This syntax was supported forever:

 Dim obj = new SomeComClass()
 obj.DoSomething()

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.

share|improve this answer
3  
@Hans Passant: I know that, however C# dynamic is not quite the same as VB's 'late binding'. In C#, with the dynamic keyword I can be very explicit about the dynamic parts of my program. To me it's like telling the compiler: "hey, I know what I'm doing for this specific part of my program". With VB.Net I have to turn off Option Strict for my whole project, which can lead to subtle bugs creeping in because of it. – jeroenh May 23 '10 at 23:02
@jeroen: post updated. – Hans Passant May 23 '10 at 23:12
@Hans @jeroen. In your edited code, app is inferred as type Object, so it's not possible to use the Excel Application object app. For instance if I substitute app.Calculate where you have REM etc... it doesn't compile. I think this is the problem jeroen is asking about. The compiler says Error 1 Option Strict On disallows late binding. – MarkJ Aug 31 '10 at 12:13
1  
I was inspired to post a suggestion on Microsoft Connect that VB should have something like dynamic. Anyone who agrees or disagrees strongly can vote or comment on Microsoft Connect here – MarkJ Aug 31 '10 at 15:16
3  
@jeroenh You can override the project-level options at a file-level with different Option directives at the top of the file. – Mark Hurd Aug 19 '12 at 13:58
show 4 more comments

You can turn Option Infer On and Option Strict Off and still have something very close.

share|improve this answer

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.