Click here to Skip to main content
15,909,051 members
Home / Discussions / C#
   

C#

 
GeneralRe: Recommendations for creating and printing a form on a A4 paper? Pin
OriginalGriff28-Jul-15 2:19
mveOriginalGriff28-Jul-15 2:19 
GeneralRe: Recommendations for creating and printing a form on a A4 paper? Pin
DPaul199428-Jul-15 2:45
DPaul199428-Jul-15 2:45 
QuestionChart questions, 16 Lines / ChartAreas (Logic Analyzer) Pin
mattlas27-Jul-15 22:11
mattlas27-Jul-15 22:11 
AnswerRe: Chart questions, 16 Lines / ChartAreas (Logic Analyzer) Pin
mattlas28-Jul-15 21:19
mattlas28-Jul-15 21:19 
Questionmvc Pin
Member 1186668527-Jul-15 7:48
Member 1186668527-Jul-15 7:48 
AnswerRe: mvc Pin
OriginalGriff27-Jul-15 8:03
mveOriginalGriff27-Jul-15 8:03 
AnswerRe: mvc Pin
Shashank Bisen28-Jul-15 21:06
Shashank Bisen28-Jul-15 21:06 
QuestionAnonymous method Pin
Member 1116162527-Jul-15 2:24
Member 1116162527-Jul-15 2:24 
AnswerRe: Anonymous method PinPopular
Wendelius27-Jul-15 2:33
mentorWendelius27-Jul-15 2:33 
AnswerRe: Anonymous method Pin
Shashank Bisen28-Jul-15 21:08
Shashank Bisen28-Jul-15 21:08 
Questionhow do i insert data into a table Pin
jamesmc153527-Jul-15 0:09
jamesmc153527-Jul-15 0:09 
AnswerRe: how do i insert data into a table Pin
Richard MacCutchan27-Jul-15 0:23
mveRichard MacCutchan27-Jul-15 0:23 
GeneralRe: how do i insert data into a table Pin
jamesmc153527-Jul-15 0:25
jamesmc153527-Jul-15 0:25 
GeneralRe: how do i insert data into a table Pin
Pete O'Hanlon27-Jul-15 0:35
mvePete O'Hanlon27-Jul-15 0:35 
GeneralRe: how do i insert data into a table Pin
jamesmc153527-Jul-15 1:03
jamesmc153527-Jul-15 1:03 
GeneralRe: how do i insert data into a table Pin
Pete O'Hanlon27-Jul-15 1:10
mvePete O'Hanlon27-Jul-15 1:10 
GeneralRe: how do i insert data into a table Pin
jamesmc153527-Jul-15 1:15
jamesmc153527-Jul-15 1:15 
GeneralRe: how do i insert data into a table Pin
Sascha Lefèvre27-Jul-15 2:28
professionalSascha Lefèvre27-Jul-15 2:28 
GeneralRe: how do i insert data into a table Pin
jamesmc153527-Jul-15 2:40
jamesmc153527-Jul-15 2:40 
AnswerRe: how do i insert data into a table Pin
Pete O'Hanlon27-Jul-15 0:24
mvePete O'Hanlon27-Jul-15 0:24 
QuestionDisplay data from SQL database to HTML page in table format using Angular JS Pin
iamcpmember27-Jul-15 0:01
professionaliamcpmember27-Jul-15 0:01 
AnswerRe: Display data from SQL database to HTML page in table format using Angular JS Pin
Richard MacCutchan27-Jul-15 0:18
mveRichard MacCutchan27-Jul-15 0:18 
QuestionPicture Viewer. Pin
Member 1186549926-Jul-15 23:07
Member 1186549926-Jul-15 23:07 
AnswerRe: Picture Viewer. Pin
Pete O'Hanlon26-Jul-15 23:18
mvePete O'Hanlon26-Jul-15 23:18 
AnswerRe: Picture Viewer. Pin
Sebastiaan Lubbers29-Jul-15 0:32
professionalSebastiaan Lubbers29-Jul-15 0:32 
C#
var directory = new DirectoryInfo(@"C:\");

var latest = (from f in directory.EnumerateFiles("*.jpg")
              orderby f.CreationTime
              select f.FullName).LastOrDefault();

Console.WriteLine(latest);


Returns null in case there are no jpg files found.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.