I want to write out a series of XML Elements. The values are mostly enums or bools. I would like to represent these enums and bools using the numerical values rather than the string names. (Mainly because I've already written the reading part which does this)
I don't know how to do this.
Object Class
public class ApplicationConfiguration
{
public OperationalMode OperationalMode { get; set; }
public bool MuteMedia { get; set; }
public Stretch MediaStretch { get; set; }
public DisplayMode DisplayMode { get; set; }
public bool BlankSecondMonitor { get; set; }
public String RemoteUri { get; set; }
}
XML Writer Part
writer.WriteElementString("OperationalMode", configuration.OperationalMode.ToString());
writer.WriteElementString("MuteMedia",configuration.MuteMedia.ToString());
writer.WriteElementString("MediaStretch",configuration.MediaStretch.ToString());
writer.WriteElementString("DisplayMode",configuration.DisplayMode.ToString());
writer.WriteElementString("BlankSecondMonitor",configuration.BlankSecondMonitor.ToString();
writer.WriteElementString("RemoteUri",configuration.RemoteUri);
The above is writing out the enum string names and 'true' or 'false'.
I would like to use the numerical values, I can't figure out how.
Thanks
For the enum values, simply cast to integer before converting to a string:
For the booleans this is not possible, so if you want 0/1 values you can use the conditional operator: