FastQuant.SellSideInstrumentStrategy.GetOrCreateChildrenStrategiesForInstrumennt C# (CSharp) Method

GetOrCreateChildrenStrategiesForInstrumennt() private method

private GetOrCreateChildrenStrategiesForInstrumennt ( Instrument instrument ) : LinkedList
instrument Instrument
return LinkedList
        private LinkedList<Strategy> GetOrCreateChildrenStrategiesForInstrumennt(Instrument instrument)
        {
            return this.childrenByInstrument[instrument.Id] = this.childrenByInstrument[instrument.Id] ?? new LinkedList<Strategy>();
        }
    }