Is there a window “scratch” in Visual Studio

I am currently using notepad to store small notes about my code. This is usually a mixture of code and requirements.

Is there a “scratch” type window in VS where I could do this.

Another alternative is to use code comment blocks in source files, but this is not quite what I am looking for.

+5
source share
5 answers

I just found that visual studio supports git.md or markdown style: Screen shot of Visual Studio with .md file open

This provides a good way to store notes, requirements, and developer instructions such as readme.

  • To use: just add the file to your solution with the extension .md.
+1
source

" " (, html ), .

" " "".

+3

In most cases, I simply added a .txt file to comments about a decision or abuse to do this. However, if you use notepad to store todo lists and so on, you can use TODO: in your comments and visual studio, they will be added to the built-in task list.

+2
source

I think that Stick Notes does not support VS 2005. In any case, WinDBG rocks.

0
source

All Articles