Skip to content

Instantly share code, notes, and snippets.

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());