Hi,
I noticed a problem with deploying an app that uses a class with properties coded like this:
Public Class RegisterUser
Public Property UserID As String
End Class
When this gets deployed with debugger attached, you get an error FF000000 Unable to resolve System.Diagnostics.DebuggerBrowsableAttribute.
It’s not a major issue as I found an article here that helped saying use the old way of declaring properties (It took a lot of searching to find the right strings to pull up the answer ):
Private _userId As String
Public Property UserID As String
Get
Return _userId
End Get
Set(value As String)
_userId = value
End Set
End Property
I know most people class VB as an obsolete language but is this classed as a bug?
VB.NET still has a better VS integration, and is more readable (in my opinion). It is just a language that fits super well with any MS technology. Then again everything else is C based and basing your skills in C# is probably better. You can switch camps if you know C#.