Link to home
Start Free TrialLog in
Avatar of phiadmin
phiadmin

asked on

print c# project

Is there a easy way to print out all the code in a C# application without having to go to each object in solution explorer and print from there ?
Avatar of kaufmed
kaufmed
Flag of United States of America image

Perhaps a batch file?

for /R "C:\path\to\top\level\folder\containing\c-sharp\files" %c in (*.cs) do print "%c"

Open in new window

Avatar of phiadmin
phiadmin

ASKER

Not sure what you mean by that ?

I was looking to print using Visual Studio
ASKER CERTIFIED SOLUTION
Avatar of jiangsheng
jiangsheng

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial