Add procedure separator lines in the .cs code Text editor ?

  • Thread starter Thread starter Rich P
  • Start date Start date
R

Rich P

I hope this isn't too panzy, but I am migrating from VB.net where in the
code Text Editor the procedures are separated by lines as follows:

________________________________

Private Sub something()
...
End Sub
________________________________

Private sub NextSub()
...
End Sub
________________________________

This makes it much easier to read. Does C# have a feature like this? I
was clicking around in Tools/Options/Text Editor but don't see any
properties related to this.

Thanks,
Rich
 
I hope this isn't too panzy, but I am migrating from VB.net where in the
code Text Editor the procedures are separated by lines as follows:

________________________________

Private Sub something()
..
End Sub
________________________________

Private sub NextSub()
..
End Sub
________________________________

This makes it much easier to read. Does C# have a feature like this? I
was clicking around in Tools/Options/Text Editor but don't see any
properties related to this.

Not out of the box, no. Maybe a 3rd-party add-in supports it, but I have
CodeRush and it doesn't (that I'm aware of). Personally, I hated that back
in my VB6 days and turned it off there and in VB.NET, so it doesn't bug me
that C# doesn't have it.
 
Back
Top