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