1

我正在尝试创建一个成员列表,我将针对这些成员运行多个值的比较操作

这是我的代码

HashSet<string> respCodeList = new HashSet<string> { "051", "052", "055", "056", "058", "059", "061", "063", "064" };    

if (respCodeList.Contains(object.Property))

我在 if 语句中收到错误:

“对象”不包含“属性”的定义

通过google找到了这种比较方式,但不知道为什么会出现这个错误

完整代码:

/* Microsoft SQL Server Integration Services Script Component
*  Write scripts using Microsoft Visual C# 2008.
*  ScriptMain is the entry point class of the script.*/

using System;
using Microsoft.SqlServer.Dts.Pipeline.Wrapper;
using Microsoft.SqlServer.Dts.Runtime.Wrapper;
using System.Collections.Generic;

[Microsoft.SqlServer.Dts.Pipeline.SSISScriptComponentEntryPointAttribute]


public class ScriptMain : UserComponent
{

    public override void PreExecute()
    {
        base.PreExecute();
        /*
          Add your code here for preprocessing or remove if not needed
        */
    }

    public override void PostExecute()
    {
        base.PostExecute();
        /*
          Add your code here for postprocessing or remove if not needed
          You can set read/write variables here, for example:
          Variables.MyIntVar = 100
        */
    }

    public override void Input0_ProcessInputRow(Input0Buffer Row)
    {
        string TermnLn = Row.TermnLn;
        string TransTypeCode = Row.TransTypeCode;
        string ReversalReason = Row.ReversalReason;
        string TransResponseCode = Row.TransResponseCode;
        string CardIssuerLn = Row.CardIssuerLn;
        string transType = Row.TransTypeCode; 
        int origTransAmount = (int)Row.origTransAmount;
        int actualTransAmount = (int)Row.actualTransAmount;


        HashSet<string> respCodeList = new HashSet<string> { "051", "052", "055", "056", "058", "059", "061", "063", "064" };



        if (TransTypeCode == "10") // IF IT IS WITHDRAWAL
        {
            if (TermnLn== "PRO1") // CHECK FOR AXIS TERMINAL
            {
                if (ReversalReason == "00") //IT IS NOT A REVERSAL
                {
                    if (respCodeList.Contains(Row.TransResponseCode))
                    {
                        Row.CashDispensed = origTransAmount/100; //cash dispense                
                    }
                }
                else
                {
                    if (respCodeList.Contains(Row.TransResponseCode))
                    {
                        Row.CashDispensed =(actualTransAmount/100 - origTransAmount/100); //cash dispense               
                    }
                }
            }
            if (TermnLn!= "PRO1" && CardIssuerLn == "PRO1") // CHECK FOR NON AXIS TERMINAL
            {
                if (ReversalReason == "00") //IT IS NOT A REVERSAL
                {
                    if (respCodeList.Contains(Row.TransResponseCode))
                    {
                        Row.CashDispensed = origTransAmount / 100; //cash dispense non axis                 
                    }
                }
                else
                {
                    if (respCodeList.Contains(Row.TransResponseCode))
                    {
                        Row.CashDispensed = (actualTransAmount / 100 - origTransAmount / 100); //cash dispense              
                    }
                }
            }

        }



        if (ReversalReason == "00") //IT IS NOT A REVERSAL
        {
            if (respCodeList.Contains(Row.TransResponseCode))
            {
                Row.SuccessTransOrigAmt = origTransAmount / 100; //SuccessTransOrigAmt


            }
        }


        if (ReversalReason != "00" && ReversalReason != " ")
        {
            if (transType == "0420" || transType == "0412" || transType == "0430")
            {
                if (origTransAmount == actualTransAmount)
                {
                    Row.ReversalAmount = origTransAmount / 100; //ReversalAmount
                }
                else
                {
                    Row.ReversalAmount = (actualTransAmount / 100 - origTransAmount / 100);  //ReversalAmount
                }
            }
        }

    }
}
4

2 回答 2

0

只需将对象转换为您的对象类型,然后尝试。

HashSet<string> respCodeList = new HashSet<string> { "051", "052", "055", "056", "058", "059", "061", "063", "064" };    

if (respCodeList.Contains((object as YourType).Property))
于 2013-10-21T10:06:01.597 回答
0

我认为这是编译错误。因为 'object' 保留关键字

于 2013-10-21T10:06:08.723 回答