Is it possible to create a list or array of pointers in C#?
I want to have a list of T*
rather than use IntPtr
because i am forever having to type Marshal Ptr To Structure
methods all over the place rather than directly access methods via ->
command.
I tried making a list with T* but it says it cannot use it as a type. So is my only option to just constantly convert when needed from the IntPtr
?