Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Bitmap.Dispose()の後に電話する必要がありBitmap.Recycle()ますか? それともBitmap.Dispose()十分ですか?
Bitmap.Dispose()
Bitmap.Recycle()
using別の解決策は、ステートメントでラップすることです。
using
using (var bm = new Bitmap(..)) { // Do stuff with the Bitmap here }
using ステートメントのスコープを離れると、Bitmap はおそらくガベージ コレクションされることを覚えておいてください。したがって、単に aCanvasまたは何かに描画するだけの場合、これは良い方法です。
Canvas