I'm making an application for the console, which handles Bitmap images. The problem I have is that System.Drawing seemingly does not include Bitmap. I already tried importing System.Drawing.Imaging but as I read, it is not available for .Net Core (not sure though...).
- blogs.msdn.microsoft.com/dotnet/2017/01/19/…jAC– jAC2018-07-22 11:30:33 +00:00Commented Jul 22, 2018 at 11:30
- If you target .Net Core do TAG it!!TaW– TaW2018-07-22 12:18:51 +00:00Commented Jul 22, 2018 at 12:18
Add a comment |
1 Answer
To use the System.Drawing objects in a Console Application you need to add the System.Drawing also to the references.
- Go to the right menu of
References - Choice
Add Reference... - Select
Assemblies - Check the
System.Drawing
1 Comment
Pablo Jeken Rico
Thank you, I realised my problem was that I used a type of console app, which doesn't support drawing...
