I'm having problems with my serializable class
[Serializable]
public class MyNameIsClass
All the properties are getting the default value (null or 0) when invoking from external sources. I deleted the [Serializable] tag and worked, but I need the class to be serializable so I can run this line:
System.IO.Stream stream = StreamHelper.SerializeToStream(myNameIsClassObject);
Is there another way to go through this problem?
Thank you all