ATMLModelLibrary.model.signal.basic.Notch.LoadFromFile C# (CSharp) Method

LoadFromFile() public static method

Deserializes xml markup from file into an Notch object
public static LoadFromFile ( string fileName, Notch &obj, System &exception ) : bool
fileName string string xml file to load and deserialize
obj Notch Output Notch object
exception System output Exception value if deserialize failed
return bool
        public static bool LoadFromFile(string fileName, out Notch obj, out System.Exception exception)
        {
            exception = null;
            obj = default(Notch);
            try
            {
                obj = LoadFromFile(fileName);
                return true;
            }
            catch (System.Exception ex)
            {
                exception = ex;
                return false;
            }
        }

Same methods

Notch::LoadFromFile ( string fileName ) : Notch
Notch::LoadFromFile ( string fileName, Notch &obj ) : bool