Example #1
0
 /// <summary>
 /// Return the first string of a multi-language string.
 /// </summary>
 public static String FirstText(this I18NText Text)
 => Text != null && Text.Any()
            ? Text.First().Value
            : null;