How to Dispose SharpDX objects

1.4k Views Asked by At

After searching on the net I'm totally confused about disposing sharpdx objects. I don't know how should I dispose them. Should I dispose them like unmanaged resources? Does my app creates memory leak if I don't dispose them? do sharpdx classes already override finalizer?

1

There are 1 best solutions below

5
On BEST ANSWER

Yes they can lead to memory leaks if they are not disposed.

Have a look at this article:

http://english.r2d2rigo.es/2014/09/18/proper-lifecycle-management-of-sharpdx-resources-in-cxaml-universal-apps/

Also you can implement Idisposable interface to your class and manually dispose your objects.