Method GetSupportedLanguages
GetSupportedLanguages()
Returns the list of languages supported by the underlying language model.
public List<string> GetSupportedLanguages()
Returns
Examples
var langs = engine.GetSupportedLanguages();
Console.WriteLine(string.Join(", ", langs));
Exceptions
- NotSupportedException
Thrown if the model weights do not support language enumeration.