├── .gitignore ├── BitPackingExamples.sln ├── BitPackingExamples ├── App.config ├── BitPackingExamples.csproj ├── BitStreamIO.cs ├── Program.cs └── Properties │ └── AssemblyInfo.cs └── LICENSE /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ks-examples/BitPacking101/HEAD/.gitignore -------------------------------------------------------------------------------- /BitPackingExamples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ks-examples/BitPacking101/HEAD/BitPackingExamples.sln -------------------------------------------------------------------------------- /BitPackingExamples/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ks-examples/BitPacking101/HEAD/BitPackingExamples/App.config -------------------------------------------------------------------------------- /BitPackingExamples/BitPackingExamples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ks-examples/BitPacking101/HEAD/BitPackingExamples/BitPackingExamples.csproj -------------------------------------------------------------------------------- /BitPackingExamples/BitStreamIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ks-examples/BitPacking101/HEAD/BitPackingExamples/BitStreamIO.cs -------------------------------------------------------------------------------- /BitPackingExamples/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ks-examples/BitPacking101/HEAD/BitPackingExamples/Program.cs -------------------------------------------------------------------------------- /BitPackingExamples/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ks-examples/BitPacking101/HEAD/BitPackingExamples/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ks-examples/BitPacking101/HEAD/LICENSE --------------------------------------------------------------------------------