I want to take a screenshot in a console application (not windows forms), then I want to take that screenshot and send it to my friend through socket, but so far I don't have any issues with socket.
All tutorials I can find use windows forms and use:
using System.Drawing.Imaging;
But if I try to do that, it gives me an error saying:
"The type or namespace name 'Imaging' does not exist in the namespace 'System.Drawing'"
Can you help me?