Need help with linq query for new queue

Hi Team,

Please help me to find the linq expression to interpret the below :

FirstOrDefault(QueueItems.Where(item => item.Status == “New”));

Thanks!

@kiranmili
the .VB Syntax doesnt use =>
It would look like: Where(Function (x) x.Status.Equals(“New”))