Why is Matrix a heavyweight class derived from MarshalByRefObject instead of a lightweight struct?
|
|
||||
|
|
|
The That said, it's common for the classes in the This was more than likely done because most of the GDI functions (which most of the APIs that the Windows Forms controls rely on) will use the GDI matrix for transformations; using a lightweight, fully managed code structure would require translation of that structure across the managed/unmanaged boundary every time a method was called. Compared to the cost of marshaling just the call and the handle, versus the call and the entire structure whenever you want to do operations on the matrix, it was probably decided that for performance reasons it was better to marshal the calls. |
|||
|
|
|
For the usual reason, it is an unmanaged object. It has a finalizer too, in case you forget to dispose. GDI+ is at its core a native api. The corresponding header for C++ programs is |
|||
|
|
|
According to MSDN documentation for the method:
Quick look through reflector shows this code:
|
|||
|
|