There ImageFormatare several properties, such as Png, Tiffetc.
Now, if a string is given, is it possible to get the corresponding static property?
Here is the code
[Test]
public void GetPng()
{
Assert.AreEqual(ImageFormat.Png, GetImageFormat("Png"));
}
source
share