Hello,
I want to move unity runtime to a DLL, but have a problem that event syntax cause a JIT Exception on iOS devices.
A workaround of it is using Custom Event Accessors,
private StartEndDelegate start;
public event StartEndDelegate Start
{
add { start += value; }
remove { start -= value; }
}
Thanks!