System.Runtime.Serialization.SerializationException:
Type 'System.Threading.Thread' in Assembly 'mscorlib, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089' is not marked as serializable.
Is there a way around that? ive added the Serializable attribute to all of my class's, but i cant add attributes to things like that, can i? and if i can, is there a way to get around that issue altogether? because i dont want to always have to add [Serializable] to everything.
PS, in my project, im dynamically compiling C# code and including it in my application.
edit one: Because of the nature of my application, everything, all events, etc, is managed my separate threads.. I cannot get away from that fact, because i need to be doing many tasks at the same time. Is there a way to get around that fact?