TimeSpanHumanHumanizeExtensions ----- código correto ---> TimeSpanHumanizeExtensions
class Program
{
static void Main(string[] args)
{
DateTime dataFimPagamento = new DateTime(2018, 6, 30);
DateTime dataCorrente = DateTime.Now;
TimeSpan diferenca = dataFimPagamento - dataCorrente;
string mensagem = "Vencimento em " + TimeSpanHumanHumanizeExtensions.Humanize(diferenca);
Console.WriteLine(mensagem);
Console.ReadLine();
}
}
}