Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a 'scratch pad' window in Visual Studio

I currently use notepad to store little notes to myself about my code. This is usually a mixture of code and requirements.

Is there a 'scratch pad' type window in VS where i could do this.

The other alternative is to use code comment blocks in the source files, but that's not quite what I'm looking for.

like image 975
AndyM Avatar asked Oct 29 '08 10:10

AndyM


2 Answers

Try the sticky notes add in

http://www.davidhayden.com/blog/dave/archive/2008/03/18/VisualStudio2008AddInStickyNotes.aspx

http://code.msdn.microsoft.com/StickyNotes

like image 134
Eoin Campbell Avatar answered Oct 03 '22 19:10

Eoin Campbell


On "Solution Level" you can add files (text, html or code) to act as notes files.

Also in projects, you can add files, and set the Build Action to None.

like image 23
GvS Avatar answered Oct 03 '22 19:10

GvS