It's worth noting, I found an online code formatter called csharpformat (it also does VB, T-SQL, XML) that makes your code look like this:
Public Sub Finish()
Dim instance As New SendOrPostCallback(AddressOf UpdateList)
Me.Dispatcher.BeginInvoke(DispatcherPriority.Render, instance, Nothing)
End Sub
My code samples should now look like this:
Public Sub Finish()
Dim instance As New SendOrPostCallback(AddressOf UpdateList)
Me.Dispatcher.BeginInvoke(DispatcherPriority.Render, instance, Nothing)
End Sub
No comments:
Post a Comment