I have a C# class the returns a List, using System.Collections.Generic Lists not F# List
I want to iterate though the list to find a object or not find it. Here is how I would do it in C#. How would I accomplish the similar thing in F#
foreach (AperioCaseObj caseObj in CaseList)
{
if (caseObj.CaseId == "")
{
}
else
{
}
}
