I have this model:
public class StationData
{
public int StationID{ get; set; }
public List<int> FileID { get; set; }
}
In my main page, I call a method that will return an object of type “StationData”.
Now, what I want is to remove an item from the “List” where FileID = value;
Is that possible?
try this
O, sorry i misunderstood