"';对象';不包含';属性';并且没有扩展方法';属性';接受类型为
本文关键字:属性 方法 类型 扩展 对象 quot 包含 | 更新日期: 2023-09-27 18:07:13
我创建了一个简单的类,它是DynamicObject:的后代
public class DynamicCsv : DynamicObject
{
private Dictionary<string, int> _fieldIndex;
private string[] _RowValues;
internal DynamicCsv(string[] values, Dictionary<string, int> fieldIndex)
{
_RowValues = values;
_fieldIndex = fieldIndex;
}
internal DynamicCsv(string currentRow, Dictionary<string, int> fieldIndex)
{
_RowValues = currentRow.Split(',');
_fieldIndex = fieldIndex;
}
public override bool TryGetMember(GetMemberBinder binder, out object result)
{
result = null;
dynamic fieldName = binder.Name.ToUpperInvariant();
if (_fieldIndex.ContainsKey(fieldName))
{
result = _RowValues[_fieldIndex[fieldName]];
return true;
}
return false;
}
public override bool TrySetMember(SetMemberBinder binder, object value)
{
dynamic fieldName = binder.Name.ToUpperInvariant();
if (_fieldIndex.ContainsKey(fieldName))
{
_RowValues[_fieldIndex[fieldName]] = value.ToString();
return true;
}
return false;
}
}
我通过执行以下操作来使用子对象:
protected string[] _currentLine;
protected Dictionary<string, int> _fieldNames;
...
_fieldNames = new Dictionary<string, int>();
...
_CurrentRow = new DynamicCsv(_currentLine, _fieldNames);
当我尝试使用带点符号的_CurrentRow时:
int x = _CurrentRow.PersonId;
我收到以下错误消息:
"'object'不包含'property'的定义,并且找不到接受'object'类型的第一个参数的扩展方法'<em]property>">
我可以使用VB在即时窗口中解决该属性,但没有任何问题:
? _CurrentRow.PersonId
看起来_CurrentRow
类型为object
,但您希望在其上进行动态查找。如果是这种情况,则需要将类型更改为dynamic
dynamic _CurrentRow;
您没有显示_CurrentRow
的声明。应声明为
CCD_ 5以便具有动态行为。