S
shapper
Hello,
I am using ASP.NET Membership and I know each class that I add to
Profile must be Serializable:
[Serializable()]
public class Contacts {
public string Address { get; set; }
}
But can I have the following:
[Serializable()]
public class Contacts {
public Address Address { get; set; }
}
Address is a new class. I suppose I can use it but I also need to make
it Serializable, right?
Thanks,
Miguel
I am using ASP.NET Membership and I know each class that I add to
Profile must be Serializable:
[Serializable()]
public class Contacts {
public string Address { get; set; }
}
But can I have the following:
[Serializable()]
public class Contacts {
public Address Address { get; set; }
}
Address is a new class. I suppose I can use it but I also need to make
it Serializable, right?
Thanks,
Miguel