├── .gitattributes ├── .gitignore ├── GCPerfSim ├── GCPerfSim.cs ├── GCPerfSim.csproj ├── Properties │ └── launchSettings.json └── scenarios │ ├── example.test │ └── sample.test ├── Homework.sln ├── HomeworkLeak ├── HomeworkLeak.csproj └── Program.cs ├── LICENSE.txt ├── MemoryExpert-Slides-M09L05-Homework.pdf └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/GCPerfSim/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/GCPerfSim/HEAD/.gitignore -------------------------------------------------------------------------------- /GCPerfSim/GCPerfSim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/GCPerfSim/HEAD/GCPerfSim/GCPerfSim.cs -------------------------------------------------------------------------------- /GCPerfSim/GCPerfSim.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/GCPerfSim/HEAD/GCPerfSim/GCPerfSim.csproj -------------------------------------------------------------------------------- /GCPerfSim/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/GCPerfSim/HEAD/GCPerfSim/Properties/launchSettings.json -------------------------------------------------------------------------------- /GCPerfSim/scenarios/example.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/GCPerfSim/HEAD/GCPerfSim/scenarios/example.test -------------------------------------------------------------------------------- /GCPerfSim/scenarios/sample.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/GCPerfSim/HEAD/GCPerfSim/scenarios/sample.test -------------------------------------------------------------------------------- /Homework.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/GCPerfSim/HEAD/Homework.sln -------------------------------------------------------------------------------- /HomeworkLeak/HomeworkLeak.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/GCPerfSim/HEAD/HomeworkLeak/HomeworkLeak.csproj -------------------------------------------------------------------------------- /HomeworkLeak/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/GCPerfSim/HEAD/HomeworkLeak/Program.cs -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/GCPerfSim/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MemoryExpert-Slides-M09L05-Homework.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/GCPerfSim/HEAD/MemoryExpert-Slides-M09L05-Homework.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Module09-Typical-Problems --------------------------------------------------------------------------------