SwfDotNet.IO.SwcReader.ReadSwc C# (CSharp) Method

ReadSwc() public method

Reads the SWC.
public ReadSwc ( ) : Swc
return Swc
        public Swc ReadSwc()
        {
            if (swcFile == null)
                return null;

            ArrayList zipEntries = new ArrayList();

            IEnumerator enumerator = swcFile.GetEnumerator();
            while (enumerator.MoveNext())
            {
                ZipEntry zipEntry = (ZipEntry)enumerator.Current;
                zipEntries.Add(zipEntries);
            }

            return null;
        }