Ejemplo n.º 1
0
 /// <summary>
 /// Attempts to read a localized string from a named table collection.
 /// </summary>
 /// <param name="collection">Name of table collection.</param>
 /// <param name="id">ID of string to get.</param>
 /// <param name="result">Localized string result or null/empty.</param>
 /// <returns>True if string found, otherwise false.</returns>
 public virtual bool GetLocalizedString(string collection, string id, out string result)
 {
     return(fallback.GetLocalizedString(collection, id, out result));
 }