I have a class which contains a List<Func<T>>. The class is serializable and will be transferred over WCF. Now, I have problems with contained List<Func<T>>. What can I do that this list will also be serializable?
I have a class which contains a List<Func<T>> . The class is serializable and
Share
How would you expect a
Func<T>to be serialized? It’s a pointer to a function – such a thing cannot be serialized.