C# Bloomberg:如何遍历数组、创建工具对象并添加到工具 class

C# Bloomberg: How to loop through an array, create instrument objects, and add to instruments class

我正在使用 Bloomberg 的 C# Web 服务代码下载投资信息。

我正在努力找出使用字符串数组同时下载多个乐器的正确方法。 instruments class 的 instrument 成员是一个 Instrument 对象数组。您必须为您请求的每个仪器创建一个单独的仪器对象,并将每个对象添加到数组中。但是,我对 C# 还是很陌生,我正在努力寻找将多个仪器对象添加到仪器 class 的正确方法。下面的代码只是 returns 数组中的最后一个投资,因为循环中的最后一行似乎替换了之前的投资对象。

感谢任何帮助。

谢谢。

 string[] investments = { "BBG000BHGCD1", "BBG000BB2PW9" };

             Instruments instruments = new Instruments();

             foreach (string inv in investments)
             {
                 Instrument instr = new Instrument();
                 instr.id = inv;
                 instr.yellowkeySpecified = false;
                 instr.typeSpecified = true;
                 instr.type = InstrumentType.BB_GLOBAL;
                 instruments.instrument = new Instrument[] { instr };
             }


             // Submitting request
             SubmitGetActionsRequest req = new SubmitGetActionsRequest();
             req.headers = getActionHeaders;
             req.instruments = instruments;

             submitGetActionsRequestRequest subGetActReqReq = new 
 submitGetActionsRequestRequest(req);

将循环更改为:

        Instruments instruments = new Instruments();

        var myList = new List<Instrument>();

        foreach (string inv in investments)
        {
            myList.Add(new Instrument
            {
                id = inv,
                yellowkeySpecified = false,
                typeSpecified = true,
                type = InstrumentType.BB_GLOBAL
            });

        }

        instruments.instrument = myList.ToArray();