RxLib.XmlToRxc()
Converts XML to Configuration file (RXC)
C#
Bool XmlToRxc(string xmlFileName, string rxcFileName)
Parameters:
[in] xmlFileName full Path of the XML configuration settings.
[out] rxcFileName full Path of the ReXgen binary configuration settings.
C# Example:
private void btnXMLToRXC_Click(object sender, EventArgs e)
{
if (dlgOpenXML.ShowDialog() != DialogResult.OK)
return;
if (dlgSaveRXC.ShowDialog() != DialogResult.OK)
return;
RxLib.XmlToRxc(dlgOpenXML.FileName, dlgSaveRXC.FileName);
}
Last updated