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 ...
in C#:
public string Property { get; private set; }
in VB?
Please vote or/and share your ideas!
...
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.
...
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 ...
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...