Last active
March 29, 2020 21:10
-
-
Save omeraydemir/a7ab238c85a37ff909ffa742412db51c 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 | |
orderby ogr.YASI descending | |
select ogr.ADSOYAD; | |
foreach (string item in sonuc) | |
{ | |
//sonuc değişkenimize dolan isimleri artık her dönüş sırasında item değişkeninen ulasabiliriz. | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment