- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
private List<OutputData> AddSomeSpecialStateToFoo(
            List<OutputData> foos,
            IDictionary<Guid, SomeSpecialState> fooStates)
        {
            foreach(var foo in foos)
            {
                foo .State = fooStates.FirstOrDefault(x => x.Key == cam.FooId).Value;
            }
            return foos;
        }
 Follow us!
 Follow us!