├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── images ├── array.png ├── bigstring.png ├── bigstring2.png ├── eternal.png ├── fileprovider.png ├── loh1.png ├── loh2.png ├── pooledarray.png └── workstation.png └── src └── MemoryLeak ├── MemoryLeak.sln └── MemoryLeak ├── Controllers ├── ApiController.cs └── DiagnosticsController.cs ├── GlobalGC.cs ├── MemoryLeak.csproj ├── Pages └── Index.cshtml ├── Program.cs ├── Properties └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json └── appsettings.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/memoryleak/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/memoryleak/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/memoryleak/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/memoryleak/HEAD/README.md -------------------------------------------------------------------------------- /images/array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/memoryleak/HEAD/images/array.png -------------------------------------------------------------------------------- /images/bigstring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/memoryleak/HEAD/images/bigstring.png -------------------------------------------------------------------------------- /images/bigstring2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/memoryleak/HEAD/images/bigstring2.png -------------------------------------------------------------------------------- /images/eternal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/memoryleak/HEAD/images/eternal.png -------------------------------------------------------------------------------- /images/fileprovider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/memoryleak/HEAD/images/fileprovider.png -------------------------------------------------------------------------------- /images/loh1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/memoryleak/HEAD/images/loh1.png -------------------------------------------------------------------------------- /images/loh2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/memoryleak/HEAD/images/loh2.png -------------------------------------------------------------------------------- /images/pooledarray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/memoryleak/HEAD/images/pooledarray.png -------------------------------------------------------------------------------- /images/workstation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/memoryleak/HEAD/images/workstation.png -------------------------------------------------------------------------------- /src/MemoryLeak/MemoryLeak.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/memoryleak/HEAD/src/MemoryLeak/MemoryLeak.sln -------------------------------------------------------------------------------- /src/MemoryLeak/MemoryLeak/Controllers/ApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/memoryleak/HEAD/src/MemoryLeak/MemoryLeak/Controllers/ApiController.cs -------------------------------------------------------------------------------- /src/MemoryLeak/MemoryLeak/Controllers/DiagnosticsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/memoryleak/HEAD/src/MemoryLeak/MemoryLeak/Controllers/DiagnosticsController.cs -------------------------------------------------------------------------------- /src/MemoryLeak/MemoryLeak/GlobalGC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/memoryleak/HEAD/src/MemoryLeak/MemoryLeak/GlobalGC.cs -------------------------------------------------------------------------------- /src/MemoryLeak/MemoryLeak/MemoryLeak.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/memoryleak/HEAD/src/MemoryLeak/MemoryLeak/MemoryLeak.csproj -------------------------------------------------------------------------------- /src/MemoryLeak/MemoryLeak/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/memoryleak/HEAD/src/MemoryLeak/MemoryLeak/Pages/Index.cshtml -------------------------------------------------------------------------------- /src/MemoryLeak/MemoryLeak/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/memoryleak/HEAD/src/MemoryLeak/MemoryLeak/Program.cs -------------------------------------------------------------------------------- /src/MemoryLeak/MemoryLeak/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/memoryleak/HEAD/src/MemoryLeak/MemoryLeak/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/MemoryLeak/MemoryLeak/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/memoryleak/HEAD/src/MemoryLeak/MemoryLeak/Startup.cs -------------------------------------------------------------------------------- /src/MemoryLeak/MemoryLeak/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/memoryleak/HEAD/src/MemoryLeak/MemoryLeak/appsettings.Development.json -------------------------------------------------------------------------------- /src/MemoryLeak/MemoryLeak/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/memoryleak/HEAD/src/MemoryLeak/MemoryLeak/appsettings.json --------------------------------------------------------------------------------