Mapstache.Utf8Grid.Dispose C# (CSharp) 메소드

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void
        public void Dispose()
        {
            if (_bitmap!=null)
            {
                _bitmap.Dispose();
                _bitmap = null;
            }
            if (_graphics!=null)
            {
                _graphics.Dispose();
                _graphics = null;
            }
        }