如何在Tally中获取创建的公司列表?

How to get the created company list in Tally?

我正在尝试从 tally 到 tally API 获取所有公司列表。为此,我正在使用 Tally.dll 程序集,但是一旦我调用 GetListOfCompanies() (在 tally.dll 的 Main class 中定义),它就会给我一条错误消息,我已经在我的附件。

请告诉我是否有任何其他方法可以获得相同的结果,或者为什么我会收到错误消息?

你说你正在使用 Tally.dll 但没有提到来源 link 不知道来源的人怎么知道那个程序集

但无论如何,如果您愿意更改库,我会建议 Tally Connector (if using .Net Framework) 由我开发的开源库

//To initiate instance 

public Tally Ctally = new Tally();

//To get ListofCompanies opened in Tally

List<Company> OpenedCompanies = await Ctally.GetCompaniesList()

//To get companies in Path

List<Company> CompaniesinPath = await Ctally.GetCompaniesListinPath()

您收到该错误是因为您直接启动了 Main 方法,而不是启动了库

提供的 Entryclass

例如:在 TallyConnector 条目中 class 是 Tally,所以我是这样发起的

public Tally Ctally = new Tally();