Skip to content

Instantly share code, notes, and snippets.

@omeraydemir
Created March 29, 2020 21:27
Show Gist options
  • Save omeraydemir/ba597e6ca7b901b633d5d815b5585b2a to your computer and use it in GitHub Desktop.
Save omeraydemir/ba597e6ca7b901b633d5d815b5585b2a to your computer and use it in GitHub Desktop.
var sonuc = from ogr
in ListOgrenci
where ogr.SINIFNUMARASI == 2
select ogr;
foreach (var item in sonuc)
{
//sonuc değişkenimize sınıf numarası 2 olan öğrencilerin objeleri doluyor
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment