Is there a feature to auto-format code? For example, the following VB.NET code would auto-format to the code below:
After auto-formatting:
Private Sub Test()
If 1=1 Then
Console.WriteLine("This is a test")
End If
End Sub
Private Sub Test()
If 1=1 Then
Console.WriteLine("This is a test")
End If
End Sub