Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I have the Code Editor for C# in Visual Studio 2008 show a line separating methods?

Sorry for the dumb question, but...

I'm moving from VB to C# and this is really bugging me. Is there a way to convince VS 2008 to draw a line separating my methods like it does for VB?

I'm really used to those, and i'm used to doing

//-------------------------------------------------------

myself in Javascript.

I'm hoping I won't have to do it manually in C# too.

Any pointers?
Thanks

like image 855
Daniel Magliola Avatar asked Feb 10 '09 23:02

Daniel Magliola


People also ask

What code editor should I use for C?

Netbeans is a free, open-source, and popular cross-platform IDE for C/C++ and many other programming languages. Its fully extensible using community-developed plugins. Netbeans includes project types and templates for C/C++ and you can build applications using static and dynamic libraries.

Can I use Visual Studio for C?

The Microsoft C/C++ for Visual Studio Code extension supports IntelliSense, debugging, code formatting, auto-completion. Visual Studio for Mac doesn't support Microsoft C++, but does support . NET languages and cross-platform development.

Where can I write my C code?

To write the source code of your first C program you need to open the Notepad++ text editor. The quickest way to do that in Windows 10 is to hit your Win key, type Notepad++ in the search window, and hit Enter. and paste it into the editor. Yes, this is your first C program!


1 Answers

Not out of the box. There may be third-party apps which will do this like CodeRush or something like that.

But my advice: Get out of the habit of putting lines in between your procedures. Comments without meaning are evil.

like image 196
Dave Markle Avatar answered Sep 20 '22 15:09

Dave Markle