Created
March 29, 2020 21:27
-
-
Save omeraydemir/ba597e6ca7b901b633d5d815b5585b2a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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