Example #1
0
 /// <summary>
 /// Gets the definition of a word, in French.
 /// </summary>
 /// <param name="word">
 /// The word to define.
 /// </param>
 /// <returns>
 /// The definition(s) of the specified word.
 /// </returns>
 public static Primitive GetDefinitionInFrench(Primitive word)
 {
     return(LDDictionary.GetDefinition(word, "FDICT", _frenchGuid));
 }
Example #2
0
 /// <summary>
 /// Gets the definition of a word, in Spanish.
 /// </summary>
 /// <param name="word">
 /// The word to define.
 /// </param>
 /// <returns>
 /// The definition(s) of the specified word.
 /// </returns>
 public static Primitive GetDefinitionInSpanish(Primitive word)
 {
     return(LDDictionary.GetDefinition(word, "SDICT", _spanishGuid));
 }
Example #3
0
 /// <summary>
 /// Gets the definition of a word, in English.
 /// </summary>
 /// <param name="word">
 /// The word to define.
 /// </param>
 /// <returns>
 /// The definition(s) of the specified word.
 /// </returns>
 public static Primitive GetDefinition(Primitive word)
 {
     return(LDDictionary.GetDefinition(word, "EDICT", _englishGuid));
 }