2011-06-30 3 views

Répondre

0

devrait être quelque chose comme ceci:

string[] groups = myScheduler.JobGroupNames; 
for (int i = 0; i < groups.Length; i++) 
    { 
    string[] names = myScheduler.GetJobNames(groups[i]); 
    for (int j = 0; j < names.Length; j++) 
     { 
     // groups[i] 
     // names[j] 
     } 
    } 
Questions connexes