IsNullOrWhiteSpace() публичный статический Метод

public static IsNullOrWhiteSpace ( string? value ) : bool
value string?
Результат bool
 // ReSharper disable once BuiltInTypeReferenceStyle
 public static bool NotNullNorWhiteSpace([CanBeNull] this string str) => !StringClass.IsNullOrWhiteSpace(str);