Öncelikle C# diline pek hakim değilim ödev var. C# ile yazmak zorundayım.
Sorun resim gözükmüyor ?

String[] resimler = new String[1];
String[] description = new String[1];
List liste = new List();
Image[] image = new Image[11];
for (int i = 0; i < 1; i++)
{
// resimler[i]="C:\\Users\\gencs\\Desktop\\Images\\"+(i+1)+".png";
resimler[i] = "C:\\Users\\ogunn\\Desktop\\mu arka plan\\1.png";
image[i] = Image.FromFile(resimler[i]);
var response = client.DetectLabels(image[i]);
var response2 = client.DetectDocumentText(image[i]);


foreach (var annotation in response)
{
if (annotation.Description != null)
description[i] += annotation.Description+" - ";
}
}
for (int i = 0; i < 1; i++)
{
var data = new Data() {
resim = resimler[i],
annotation = description[i]
};
liste.Add(data);
}
grid1.DataSource = liste.ToList();
grid1.DataBind();
}

public class Data
{

public String resim { get; set; }
public String annotation { get; set; }


}