private int CalcularPesoTotalDeTermino(Termino termino, string texto) { int total = 0; foreach (string sinonimo in termino.Sinonimos) { Regex regex = new Regex(sinonimo); total += regex.Matches(texto).Count * termino.Peso; } return total; }
private int CalcularPesoTotalDeTermino(Termino termino, string texto) { int total = 0; foreach (string sinonimo in termino.Sinonimos) { Regex regex = new Regex(sinonimo); total += regex.Matches(texto).Count *termino.Peso; } return(total); }