Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Make notes in Visual Studio, but not in source code

Is there a tool that will let me add/attach/associate notes to lines of code in Visual Studio 2013, but does not go into the source code.

Think of post-it notes sitting on some papers I'm working on, helping me keep track of some things I need to do, when I'm done I take them off.

like image 793
Bryan Avatar asked Jun 27 '14 18:06

Bryan


People also ask

Can I take notes in VSCode?

Dendron is a local, open-source, Markdown-based note-taking tool that helps developers work with notes like they do with code.

How do I run a .SLN file in Visual Studio code?

You can open any solution, project, folder or file in Visual Studio Code by simply right-clicking it in Solution Explorer and select Open in Visual Studio Code.

Is Visual Studio a source code editor?

Visual Studio CodeA standalone source code editor that runs on Windows, macOS, and Linux. The top pick for JavaScript and web developers, with extensions to support just about any programming language.


1 Answers

Try the Visual Studio Task List http://msdn.microsoft.com/en-us/library/txtwdysk.aspx

You can add items to it as needed, or add special comments in your code such as

// TODO: Do this later

Which will also show up in the task list.

like image 182
Michael Cook Avatar answered Oct 13 '22 09:10

Michael Cook