/// <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)); }
/// <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)); }
/// <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)); }