The following are the codes I use to retrieve the EventLogEntry based on the source instead of log.
Is there a much simpler way
EventLog
cLog=new EventLog("Application"); foreach (EventLogEntry entry in cLog.Entries){
if(entry.Source=="C# application") Console.Write(entry.Message);}