public static bool FindIs64Bit(ICollection <string> dlls) { dlls = dlls ?? throw new ArgumentNullException(nameof(dlls)); dlls = dlls.Any() ? dlls : throw new ArgumentException(@"Array is empty", nameof(dlls)); return(BinaryUtilities.Is64Bit(dlls.FirstOrDefault())); }