vb10

What do you think of multiline lambdas in VB 10

I was just watching a video on MSDN Channel 9 which can be found here, about some of the new features in Visual Basic 10. Now I like most of the new features, some of which have been long awaited(auto properties and Collection Initializers), one that caught my eye was the multiline lambdas like in C#. In the video he used an example ...

How do I write private set auto-properties in VB 10?

in C#: public string Property { get; private set; } in VB? Please vote or/and share your ideas! ...

Blogs to follow?

What's your list of blogs for anything asp.net and vb.net related. I know for instance Scott Gu's stuff is the first on the rank for asp.net. I'm trying to compile a list of 'good' stuff that will teach me things as I read, the more I gather the better, this way I'll get several posts a day, as most blogs post only once a week if that. ...

Why isn't my published VB10 project installing the .net 4.0 prerequisite?

I have a personal project written in VB10, and am publishing it from VS2010. However, when users attempt to run the created setup.exe, they receive an error stating .net 4.0 is required. At first I assumed I had simply not set the framework as a prerequisite, but I do have "Microsoft .NET Framework 4 (x86 and x64)" checked as one of the ...

Syntax choice for type parameter variance in C# and VB

In both C# and VB, type parameter modifiers are used to express the variance of type parameters. For example, the C# version looks like: interface Foo<in X, out Y> { } and the VB version looks like: Interface Foo(Of In X, Out Y) End Interface Since variance specifications basically restrict where and how a type parameter can be us...