I created a .NET Standard Class Library project, but when I tried using the System.Drawing class, everything behaved as if it wasn't there. I can't use anything in the class. Why is that happening and how can it be fixed?
using System;
using System.Drawing;
namespace Blueberry
{
public class GameObject
{
public void Sprite()
{
Image img; //Error: Type Image not found
}
}
}