Hi, I have a couple of flags, how do I serialize them?
I have a class that declares serialization of other variables:
public class FormSaving
{
public string Majorversion
{
get;
set;
}
public string Minorversion
{
get;
set;
}
public int Buildstartingmail
{
get;
set;
}
where my Buildstartingmail should be bound to the BuildstartingmailcheckBox block.
How should I do it?
I was thinking about using something like
abc.Buildstartingmail = BuildstartingmailcheckBox.SelectedIndex
but there is no such option as "SelectedIndex"
source
share