このコードを実行すると、次のエラーが表示されます。
エラー 1 'EPSInvoice_ServiceLibrary.EPS_Service.tr_bl' は 'フィールド' ですが、'メソッド' のように使用されます
VS.net では問題なく動作しましたが、C# に変換しています。どんな助けでも大歓迎です。ありがとう
コードは次のとおりです。
public class EPS_Service : IEPS_Service
{
List<input_params> Users = new List<input_params>();
List<token_data> token_data = new List<token_data>();
public decimal cal;
object tr_bl;
string branch;
public void User_Login(input_params inputparams)
{
EPS30Ora.EPS30Svr svr = new EPS30Ora.EPS30Svr();
if (svr.LogOnEx("EDEESTE", inputparams.VSID, inputparams.Username, inputparams.Password, "EPS30Ora", ref inputparams.ck) == 0)
{
try
{
Users.Add(inputparams);
svr.PrepareByMoney(inputparams.ck, 1, inputparams.meter_number, 10, 0, ref cal);
tr_bl = svr.GetInvoiceData(inputparams.ck, svr.Confirm(inputparams.ck));
branch = tr_bl(0)(1);
token_data.Add(new token_data() { transfer_number = "0000000" });
}
catch (System.Runtime.InteropServices.COMException ex)
{
}
}
}