Skip to content

Instantly share code, notes, and snippets.

View fatihmemis's full-sized avatar
🙂
There is no end to self improvement...

Fatih Memis fatihmemis

🙂
There is no end to self improvement...
View GitHub Profile
@fatihmemis
fatihmemis / 000-servicelifetimes.cs
Last active May 6, 2023 01:44
Service lifetime samples for Asp.Net Core dependency injection.
public static void Run()
{
var serviceBuilder = new ServiceCollection();
serviceBuilder
.AddSingleton<SingletonDisposableService>()
.AddTransient<TransientDisposableService>()
.AddScoped<ScopedDisposableService>()
;