Runtime.TotalMemory() e Runtime.FreeMemory()

Alguem por acaso sabe o que é o retorno dessas funções??

Eles correspondem a o que? Se for a memória do computador tá em que unidade, bits? byte?? Kb?

Runtime.TotalMemory() --> retorna a memória total utilizada pela JVM.



Runtime.FreeMemory() --> retorna a memória livre do sistema em bytes

TotalMemory: the total amount of memory currently available for current and future objects, measured in bytes.

FreeMemory: an approximation to the total amount of memory currently available for future allocated objects, measured in bytes.