我有一个json对象,必须使用image作为字段。我想使用Image.FromFile,但编译器将它混淆为json对象中的属性。如何使用Image.FromFile方法而不能使用值" Image。" (image.full正在使用json对象来检索图像名称)。
Public Function returnIcon()
Return image.FromFile(Path.GetTempPath() + "lolIcons\champions\" + image.full)
End Function
答案 0 :(得分:0)
尝试使用以下代码:(使用System.Drawing.Image
来防止编译器混淆)
Public Function returnIcon() AS System.Drawing.Image
Return System.Drawing.Image.FromFile(Path.GetTempPath() & "lolIcons\champions\" & image.full)
End Function