If an array is empty, it looks like you can't check it's length using ".length". What's the best way to check if an array is empty?
|
|
|
You can absolutely check an empty array's length. However, if you try to do that on a null reference you'll get an exception. I suspect that's what you're running into. You can cope with both though:
If that isn't the cause, please give a short but complete program demonstrating the problem. If that was the cause, it's worth taking a moment to make sure you understand null references vs "empty" collections/strings/whatever. |
|||||||||||||||||
|
|
You can use |
|||
|
|
|
This is the best way. Please note Array is an object in NET so you need to check for null before. |
|||
|
|
|
As other have already suggested it is likely you are getting a |
|||
|
|
|
Jon Skeet answered correctly. Just remeber that the order of the test in the "IF" is important. Check for the null before the lenght. I also prefer to put the null on the left side of the equal...just a habit I got from Java that made the code more efficient and fast... I don't think it's important in a lot of application today, but it's good practice. if(null == array || array.Length == 0) |
|||
|
|
|
if(array.length > 0) |
|||||
|
|
You can use
OR
NOTE!!!!! To insure that c# will implement the short circuit correctly; you have to compare that the object with NULL before you go to the children compare of the object. |
|||
|
|
|
check if the array is null first so you would avoid a null pointer exception logic in any language: if array is null or is empty :do .... |
|||
|
|
|
do you mean empty or null, two different things, if the array is instantiated but empty, then length is correct, if it has not been instantiated then test vs null |
|||
|
|