Said() public méthode

public Said ( string text, float confidence ) : bool
text string
confidence float
Résultat bool
Exemple #1
0
 public bool said(string text)
 {
     return(plugin.Said(text, 0.9f));
 }
Exemple #2
0
 public bool said(string text, float confidence = 0.9f) => plugin.Said(text, confidence);