Fri, April 29, 2005, 01:09 PM under
Whidbey |
VisualStudio
Just noticed a infinitesimal change in VB code with Whidbey that will make copying pasting from C# to VB and vice versa require one less thing to look for.
As you know, code for properties in VB is autogenerated:
Public Property SomeProp As String
[hit enter here]
The setter looks like this in VS.NET 2003:
Set(ByVal Value As String)
In VB2005 Beta 2 it looks like this:
Set(ByVal value As String)
Seems like the VB team had their ear pulled by the coding/naming guidelines department :-)