├── .gitattributes ├── .gitignore ├── IMGSharp.sln ├── IMGSharp ├── Delegates │ └── IMGArchiveEntryClosedDelegate.cs ├── Enums │ └── EIMGArchiveAccessMode.cs ├── Exceptions │ └── InvalidDataException.cs ├── IMGSharp.csproj ├── Interfaces │ ├── IIMGArchive.cs │ ├── IIMGArchiveEntry.cs │ └── IIMGArchiveEntryStream.cs ├── Misc │ ├── IMGArchive.cs │ ├── IMGArchiveEntry.cs │ └── IMGArchiveEntryStream.cs └── Static │ ├── IMGFile.cs │ └── IMGUtilities.cs ├── IMGSharpUnitTest ├── IMGSharpUnitTest.csproj ├── IMGSharpUnitTests.cs └── test │ ├── lorem_ipsum.txt │ └── random.txt ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigETI/IMGSharp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigETI/IMGSharp/HEAD/.gitignore -------------------------------------------------------------------------------- /IMGSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigETI/IMGSharp/HEAD/IMGSharp.sln -------------------------------------------------------------------------------- /IMGSharp/Delegates/IMGArchiveEntryClosedDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigETI/IMGSharp/HEAD/IMGSharp/Delegates/IMGArchiveEntryClosedDelegate.cs -------------------------------------------------------------------------------- /IMGSharp/Enums/EIMGArchiveAccessMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigETI/IMGSharp/HEAD/IMGSharp/Enums/EIMGArchiveAccessMode.cs -------------------------------------------------------------------------------- /IMGSharp/Exceptions/InvalidDataException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigETI/IMGSharp/HEAD/IMGSharp/Exceptions/InvalidDataException.cs -------------------------------------------------------------------------------- /IMGSharp/IMGSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigETI/IMGSharp/HEAD/IMGSharp/IMGSharp.csproj -------------------------------------------------------------------------------- /IMGSharp/Interfaces/IIMGArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigETI/IMGSharp/HEAD/IMGSharp/Interfaces/IIMGArchive.cs -------------------------------------------------------------------------------- /IMGSharp/Interfaces/IIMGArchiveEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigETI/IMGSharp/HEAD/IMGSharp/Interfaces/IIMGArchiveEntry.cs -------------------------------------------------------------------------------- /IMGSharp/Interfaces/IIMGArchiveEntryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigETI/IMGSharp/HEAD/IMGSharp/Interfaces/IIMGArchiveEntryStream.cs -------------------------------------------------------------------------------- /IMGSharp/Misc/IMGArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigETI/IMGSharp/HEAD/IMGSharp/Misc/IMGArchive.cs -------------------------------------------------------------------------------- /IMGSharp/Misc/IMGArchiveEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigETI/IMGSharp/HEAD/IMGSharp/Misc/IMGArchiveEntry.cs -------------------------------------------------------------------------------- /IMGSharp/Misc/IMGArchiveEntryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigETI/IMGSharp/HEAD/IMGSharp/Misc/IMGArchiveEntryStream.cs -------------------------------------------------------------------------------- /IMGSharp/Static/IMGFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigETI/IMGSharp/HEAD/IMGSharp/Static/IMGFile.cs -------------------------------------------------------------------------------- /IMGSharp/Static/IMGUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigETI/IMGSharp/HEAD/IMGSharp/Static/IMGUtilities.cs -------------------------------------------------------------------------------- /IMGSharpUnitTest/IMGSharpUnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigETI/IMGSharp/HEAD/IMGSharpUnitTest/IMGSharpUnitTest.csproj -------------------------------------------------------------------------------- /IMGSharpUnitTest/IMGSharpUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigETI/IMGSharp/HEAD/IMGSharpUnitTest/IMGSharpUnitTests.cs -------------------------------------------------------------------------------- /IMGSharpUnitTest/test/lorem_ipsum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigETI/IMGSharp/HEAD/IMGSharpUnitTest/test/lorem_ipsum.txt -------------------------------------------------------------------------------- /IMGSharpUnitTest/test/random.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigETI/IMGSharp/HEAD/IMGSharpUnitTest/test/random.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigETI/IMGSharp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigETI/IMGSharp/HEAD/README.md --------------------------------------------------------------------------------