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

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
 
J

Jeff Johnson

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top