Is it possible to use delegates to execute global methods in another Application domain ?

StackOverflow https://stackoverflow.com/questions/20089306

문제

I am trying to use delegates to execute methods in another domain, but i can't achieve it , so i want to make sure if it's really possible to do what i am trying to do. Is it possible to use delegates to execute global methods in another Application domain ?

도움이 되었습니까?

해결책

No it's not possible, The common language runtime does not support serialization of global methods, so delegates cannot be used to execute global methods in other application domains.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top