I am trying for some time now to add System.Drawing to the references in Visual Studio 2015. Nothing seems to work. When I go into the add reference pane, there is no System.Drawing in the list.
I need the Bitmap class from System.Drawing not one from Android.Graphics
As @Cheesebaron quoted once if forum :
The alternative method is to add
System.Drawing.dll
as references.Right click on
References
-->Edit References
-->.Net Assembly
-->Browse...
-->C:\Windows\Microsoft.NET\Framework\v4.0.30319
--> selectSystem.Drawing.dll
.Now try to make use of
Bitmap
classusing System.Drawing;