ATML1671Translator.model.channel_b.LoadFromFile C# (CSharp) Метод

LoadFromFile() публичный статический Метод

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

Same methods

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