Example #1
0
        public static OmxWriteStream Create(string filePath, int zones, bool overwrite)
        {
            OmxWriteStream ws = new OmxWriteStream(filePath);

            ws.CreateFileOMX(zones, overwrite);
            return(ws);
        }
Example #2
0
        public static OmxWriteStream OpenReadWrite(string filePath)
        {
            OmxWriteStream ws = new OmxWriteStream(filePath);

            ws.OpenReadWrite();
            return(ws);
        }