translatr.CineFile.CineFile C# (CSharp) 메소드

CineFile() 공개 메소드

public CineFile ( String srcpath, String name, bool isBE ) : System
srcpath String
name String
isBE bool
리턴 System
        public CineFile(String srcpath, String name, bool isBE)
        {
            this.subEntries = new List<SubtitleEntry>();
            this.dataStream = null;
            this.sourcePath = srcpath;
            this.name = name;
            this.isParsed = false;
            this.isBE = isBE;
        }

Same methods

CineFile::CineFile ( bool isBE ) : System