标签: system.drawing
我想知道下面的代码块是否安全,这意味着gfx配置本身会出错吗?
Using gfx As Graphics = Graphics.FromImage(img) gfx.Clear(Color.Transparent) gfx.SmoothingMode = Drawing2D.SmoothingMode.HighQuality End Using
答案 0 :(得分:0)
是的,这是using关键字的重点。来自here:
using
使用块可确保处置 当一个或多个这样的资源时 你的代码已经完成了。这个 使它们可用于其他代码 使用