GC.CollectionCount(Int32) Método
Definição
Retorna o número de vezes em que ocorreu a coleta de lixo para a geração de objetos especificada.Returns the number of times garbage collection has occurred for the specified generation of objects.
public:
static int CollectionCount(int generation);
public static int CollectionCount (int generation);
static member CollectionCount : int -> int
Public Shared Function CollectionCount (generation As Integer) As Integer
Parâmetros
- generation
- Int32
A geração de objetos para a qual a contagem de coletas de lixo deve ser determinada.The generation of objects for which the garbage collection count is to be determined.
Retornos
O número de vezes que a coleta de lixo ocorreu para a geração especificada desde que o processo foi iniciado.The number of times garbage collection has occurred for the specified generation since the process was started.
Exceções
generation é menor que 0.generation is less than 0.
Comentários
Se você implementar seu próprio gerenciamento de recursos, talvez seja necessário forçar a coleta de lixo periodicamente chamando o Collect método.If you implement your own resource management, you might need to force garbage collection periodically by calling the Collect method. Como essa é uma operação cara, você pode melhorar o desempenho ignorando a chamada quando uma coleta de lixo tiver ocorrido recentemente.Because this is an expensive operation, you can improve performance by skipping the call when a garbage collection has occurred recently. Salve o valor retornado CollectionCount imediatamente após a chamada Collect .Save the value returned by CollectionCount immediately after calling Collect. Na próxima vez que você precisar chamar Collect , compare o valor atual retornado pelo CollectionCount para o valor salvo.The next time you need to call Collect, compare the current value returned by CollectionCount to the saved value. Se os dois valores forem iguais, nenhuma coleção ocorrerá no interim e será razoável chamar Collect novamente.If the two values are equal, no collection has occurred in the interim and it is reasonable to call Collect again.