Answers for "check if ienumerable is empty vb"

VBA
4

check if ienumerable is empty c#

IEnumerable<T> enumerable = new List<int>();

if(!enumerable.Any())
{
  throw new InvalidOperationException();
}
Posted by: Guest on July-07-2020
0

vbscript check if string is empty

Dim strText = ""

'both of these return true
If Len(strText) = 0 Then
  'empty
End If

If strText = "" Then
  'empty
End If
Posted by: Guest on December-23-2020

Code answers related to "VBA"

Browse Popular Code Answers by Language