csharp how to check if a array bool is all true

Code Example - csharp how to check if a array bool is all true

                
                        private bool IsAllMissionComplete() {
     for ( int i = 0; i < MissionList.Length; ++i ) {
         if ( MissionList[ i ].isComplete == false ) {
           return false;
         }
     }
 
     return true;
 }

//raadgames