Hello,
I have recently started using PCP in conjunction with Visual Basic.NET 2005. I have been in the habit of placing my comments for a method just below the method call and before my first Dim. Here is an example of a method:
----------------------- Code -----------------------
Public Sub mySub()
'My comments normally go here...
Dim myVariable As String
Code would go here
End Sub
----------------------- Code -----------------------
When I print the code using PCP my comments above my first Dim get removed, and the Dim moved all the way up to just below the Public Sub. Is there a way to stop this from happening?
Thank you for your time,
Jeremy Collins