Extracting VC# Code into a text file?

  • Thread starter Thread starter Tobias Froehlich
  • Start date Start date
T

Tobias Froehlich

Hi!

is it possible to extract all the code of a project (or a single .cs
file) into a text file? I mean of course I can just do ctrl-c and
ctrl-v, but it would be great if the colors would be kept and if it
would be somehow structured..

the problem is that I need to show someone the code of my project, but
on his computer there is no VC#. (and no, he can't come watch it on
mine :)

Thanks!
 
The colours are added by the IDE. They are not marked up in the actual code.

Do you mean the actual IDE settings for the colour? Thats not stored in the
..csproj or sln files
 
Tobias Froehlich said:
Hi!

is it possible to extract all the code of a project (or a single .cs
file) into a text file? I mean of course I can just do ctrl-c and
ctrl-v, but it would be great if the colors would be kept and if it
would be somehow structured..

the problem is that I need to show someone the code of my project, but
on his computer there is no VC#. (and no, he can't come watch it on
mine :)

Thanks!

Paste from VC# to Word (or even WordPad, if you don't have Word). The
formatting and colors will be preserved.

Ryan LaNeve
 
Can we have a spellchecker in the next IDE also :D

And a thesarus for naming variables cuz we all know how hard that is :D
 
Back
Top