Description
Common use case is using Ignite cache inside Compute:
class MyAction : IComputeAction { private readonly ICache<int, string> _cache; ... }
This fails with a weird error:
class org.apache.ignite.IgniteException: Cannot serialize delegates over unmanaged function pointers, dynamic methods or methods outside the delegate creator's assembly.
We should consider providing a helpful error message, or handling this the same way as Ignite class is handled in BinarySystemHandlers.FindWriteHandler.