├── .gitattributes ├── .gitignore ├── AutomatedDumpAnalysis.sln ├── AutomatedDumpAnalysis ├── Analyses │ ├── CountArrays.cs │ ├── CountStrings.cs │ ├── DumpByteArrays.cs │ ├── DumpCharArrays.cs │ ├── IAnalyse.cs │ ├── RootedObjects.cs │ └── TypesOnTheLoh.cs ├── App.config ├── AutomatedDumpAnalysis.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indy-singh/AutomatedDumpAnalysis/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indy-singh/AutomatedDumpAnalysis/HEAD/.gitignore -------------------------------------------------------------------------------- /AutomatedDumpAnalysis.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indy-singh/AutomatedDumpAnalysis/HEAD/AutomatedDumpAnalysis.sln -------------------------------------------------------------------------------- /AutomatedDumpAnalysis/Analyses/CountArrays.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indy-singh/AutomatedDumpAnalysis/HEAD/AutomatedDumpAnalysis/Analyses/CountArrays.cs -------------------------------------------------------------------------------- /AutomatedDumpAnalysis/Analyses/CountStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indy-singh/AutomatedDumpAnalysis/HEAD/AutomatedDumpAnalysis/Analyses/CountStrings.cs -------------------------------------------------------------------------------- /AutomatedDumpAnalysis/Analyses/DumpByteArrays.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indy-singh/AutomatedDumpAnalysis/HEAD/AutomatedDumpAnalysis/Analyses/DumpByteArrays.cs -------------------------------------------------------------------------------- /AutomatedDumpAnalysis/Analyses/DumpCharArrays.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indy-singh/AutomatedDumpAnalysis/HEAD/AutomatedDumpAnalysis/Analyses/DumpCharArrays.cs -------------------------------------------------------------------------------- /AutomatedDumpAnalysis/Analyses/IAnalyse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indy-singh/AutomatedDumpAnalysis/HEAD/AutomatedDumpAnalysis/Analyses/IAnalyse.cs -------------------------------------------------------------------------------- /AutomatedDumpAnalysis/Analyses/RootedObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indy-singh/AutomatedDumpAnalysis/HEAD/AutomatedDumpAnalysis/Analyses/RootedObjects.cs -------------------------------------------------------------------------------- /AutomatedDumpAnalysis/Analyses/TypesOnTheLoh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indy-singh/AutomatedDumpAnalysis/HEAD/AutomatedDumpAnalysis/Analyses/TypesOnTheLoh.cs -------------------------------------------------------------------------------- /AutomatedDumpAnalysis/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indy-singh/AutomatedDumpAnalysis/HEAD/AutomatedDumpAnalysis/App.config -------------------------------------------------------------------------------- /AutomatedDumpAnalysis/AutomatedDumpAnalysis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indy-singh/AutomatedDumpAnalysis/HEAD/AutomatedDumpAnalysis/AutomatedDumpAnalysis.csproj -------------------------------------------------------------------------------- /AutomatedDumpAnalysis/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indy-singh/AutomatedDumpAnalysis/HEAD/AutomatedDumpAnalysis/Program.cs -------------------------------------------------------------------------------- /AutomatedDumpAnalysis/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indy-singh/AutomatedDumpAnalysis/HEAD/AutomatedDumpAnalysis/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AutomatedDumpAnalysis/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indy-singh/AutomatedDumpAnalysis/HEAD/AutomatedDumpAnalysis/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indy-singh/AutomatedDumpAnalysis/HEAD/README.md --------------------------------------------------------------------------------