C# 脚本错误对象不包含属性的定义
本文关键字:属性 定义 包含 脚本错误 对象 | 更新日期: 2023-09-27 18:36:18
>我正在尝试创建一个成员列表,我将对其运行具有多个值的比较操作
这是我的代码
HashSet<string> respCodeList = new HashSet<string> { "051", "052", "055", "056", "058", "059", "061", "063", "064" };
if (respCodeList.Contains(object.Property))
我在 if 语句中遇到错误:
"对象"不包含"属性"的定义
通过谷歌找到了这种进行比较的方式,但不确定为什么会出现此错误
完整代码:
/* 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
}
}
}
}
}
只需将对象转换为您的对象类型,然后尝试一下。
HashSet<string> respCodeList = new HashSet<string> { "051", "052", "055", "056", "058", "059", "061", "063", "064" };
if (respCodeList.Contains((object as YourType).Property))
我认为这是编译错误。因为"对象"保留关键字。