ATML1671Translator.model.instrument.SaveToFile C# (CSharp) Method

SaveToFile() public method

Serializes current instrument object into file
public SaveToFile ( string fileName, Exception &exception ) : bool
fileName string full path of outupt xml file
exception System.Exception output Exception value if failed
return bool
        public virtual bool SaveToFile(string fileName, out Exception exception)
        {
            exception = null;
            try
            {
                SaveToFile(fileName);
                return true;
            }
            catch (Exception e)
            {
                exception = e;
                return false;
            }
        }

Same methods

instrument::SaveToFile ( string fileName ) : void