0

我是 Bloomberg API 的新手,正在尝试开发我的第一个 C# 应用程序。

我已经安装了 blp API。我在 Visual Studio 2008 中添加了对 blpapicomLib COM 对象的引用。

我已经定义了这样的别名:

using SessionOptions = blpapicomLib.SessionOptions;

当我尝试像这样创建新的 SessionOptions 时:

SessionOptions sessionOptions = new SessionOptions();

我收到错误:

错误 1 ​​无法创建抽象类或接口“blpapicomLib.SessionOptions”的实例 C:\AMSFeederTest\VarPricesLib\VarPricesLib\VarPrices.cs 23 45 VarPricesLib

我应该在我的项目中添加什么库参考?

4

1 回答 1

1
using Session = Bloomberglp.Blpapi.Session;
using SessionOptions = Bloomberglp.Blpapi.SessionOptions;

SessionOptions sessionOptions = new SessionOptions();
sessionOptions.ServerHost = serverHost; //localhost
sessionOptions.ServerPort = serverPort; //8194

Session session = new Session(sessionOptions);

...
...
于 2012-11-29T07:58:00.167 回答