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?
Yeah, for safety I would probably do:
if(array == null || array.Length == 0)