I have a thirdparty C++ class I don't want to change.
I would like to write a wrapper which would behave like indexer operator without modification of the original class. I can do it using a helper class and proxy pattern, but is there something like extensions in C#. Something like friend indexer operator?