Exemplo n.º 1
0
 public static bool IsEmpty(this LocalizedValue <string> value) => value?.Value?.IsEmpty() == false;
Exemplo n.º 2
0
 public static string Truncate(this LocalizedValue <string> value, int maxLength, string suffix = "") => value?.Value?.Truncate(maxLength, suffix);
Exemplo n.º 3
0
 public static bool HasValue(this LocalizedValue <string> value) => value?.Value?.HasValue() == true;