Exemple #1
0
        /// <summary>
        /// Returns a float between 0 and 1 to represent the similarity between two strings
        /// </summary>
        public static float GetSimilarity(string String1, string String2)
        {
            MatchsMaker m = new MatchsMaker(String1, String2);

            return(m.Score);
        }
Exemple #2
0
 /// <summary>
 /// Returns a float between 0 and 1 to represent the similarity between two strings
 /// </summary>
 public static float GetSimilarity(string String1, string String2)
 {
     MatchsMaker m = new MatchsMaker(String1, String2);
     return m.Score;
 }