当我使用 f10 调试代码时,它可以正常工作,没有错误!但在运行时我收到此错误:“已添加具有相同密钥的项目”
请帮忙
我的字典:
public static Dictionary<string, string> ImageFilePath
= new Dictionary<string, string>();
在同一个 Glob.cs 中使用我的函数:
public static Image ShowImageOnColumn(string Value,byte ImageHeigth,byte ImageWidth)
{
.
.
.
string FilePath = "",ImgId = "";
Image img_ = new Image();
Random rnd = new Random();
ImgId = rnd.Next(100000000).ToString();
img_.ImageUrl = "ShowImageInRuntime.aspx?FileName=" + ImgId;
ImageFilePath.Add(ImgId, FilePath);
img_.Height = Unit.Pixel(ImageHeigth);
img_.Width = Unit.Pixel(ImageWidth);
return img_;
}