StringExtensionsHasValue Method |
Syntactical sugar for a string null or whitespace check.
Namespace:
MFiles.VAF.Common
Assembly:
MFiles.VAF (in MFiles.VAF.dll) Version: 2.3.623.2
Syntaxpublic static bool HasValue(
this string s
)
<ExtensionAttribute>
Public Shared Function HasValue (
s As String
) As Boolean
public:
[ExtensionAttribute]
static bool HasValue(
String^ s
)
Parameters
- s
- Type: SystemString
String to check for a value.
Return Value
Type:
BooleanTrue when the string has a value.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
String. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also