Serializable

  • Thread starter Thread starter shapper
  • Start date Start date
S

shapper

Hello,

I have a class with various properties: strings, integers, controls,
etc.

I made this class serializable using:

[Serializable]
public class Employee
....

My question is:

Can I do this when I have properties of type control?

What data types can my class properties have?

Thanks,

Miguel
 
Input & Output types that is, not types used exclusively for internal class
processing.


Scott M. said:
All types must be serializable.


shapper said:
Hello,

I have a class with various properties: strings, integers, controls,
etc.

I made this class serializable using:

[Serializable]
public class Employee
...

My question is:

Can I do this when I have properties of type control?

What data types can my class properties have?

Thanks,

Miguel
 
Back
Top