ATTENTION: The class is in a my external DLL implemented in my project. Inside my class library there is this class Annuncio with a list inside. The list must contain images, but my code gives me an error.
using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
namespace BuyNowDLL
{
class Annuncio
{
public List<Image> Images1 = new List<Image>(); //Make me error (Image)
}
}
How can I fix it?