VixenModules.SequenceType.Vixen2x.Vixen2SequenceData.Vixen2SequenceData C# (CSharp) Method

Vixen2SequenceData() protected method

protected Vixen2SequenceData ( string fileName ) : System
fileName string
return System
        protected internal Vixen2SequenceData(string fileName)
        {
            if (!File.Exists(fileName)) {
                throw new FileNotFoundException("Cannot Locate " + fileName);
            }
            FileName = fileName;
            ParseFile();
        }