VB.NET
if arrList= 0 then
..
else
..
end if
C#
if (arrList ==0)
{
...
}
else
{
...
}
Home / FAQ / ASP.NET / Collections and Lists / How to check if the ArrayList is empty
VB.NET
if arrList= 0 then
..
else
..
end if
C#
if (arrList ==0)
{
...
}
else
{
...
}
Share with