I am getting an image from a resource file like this:
Image img = (Image)Resources.ResourceManager.GetObject(imgName) as Image;
Is there a way to get the modification date of this 开发者_Go百科image?
Sorry, you won't be able to access that information as the image is loaded into the assembly as binary information, not as a file.
精彩评论