This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
faceServiceClient = new FaceServiceClient(subscriptionKey); | |
//取得所有Group | |
PersonGroup[] pg = await faceServiceClient.GetPersonGroupsAsync(); | |
//計算所有Group人數 | |
int totalCOunt = 0; | |
for(int i=0;i<pg.Length;i++) | |
{ | |
ClientContract.Person[] p =await faceServiceClient.GetPersonsAsync(pg[i].PersonGroupId.ToString()); |