Question

does Boo have a garbage collector? what type?

Was it helpful?

Solution

  1. Yes, as provided by the CLR.
  2. Depends on the implementation of the runtime.

OTHER TIPS

Since it's a .NET/CLR language, it relies on the garbage collector provided by that infrastructure. Although the garbage collector is an implementation detail to the infrastructure.

The two main CLR implementations are the Microsoft .NET Framework and the mono project. If you're interested, you can read about the implementation of the MS.NET GC or the Mono GC.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top