@ -6,7 +6,8 @@ The lifestyles are part of the enum `Lifestyle`.
## `Lifestyle.Transient`
Using the `Transient`-Lifestyle, a new instance gets created every time an instance is resolved.
`Transient` instances are not tracked by the `IocContainer`, so once you don't need them anymore they can be claimed by the garbage collector without leaking memory.
`Transient` instances are not tracked by the `IocContainer`, so once you don't need them anymore they can be claimed by the garbage collector without leaking memory.
ℹ️ This is the default `Lifestyle` that the [[`RegistrationFactory`|RegistrationFactory]] uses.