本文介绍了IDataErrorInfo.Error有什么用处?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如果首先使用IDataErrorInfo
,则必须实现它,但是它有什么用呢?我看到的所有示例都只是返回null而不是以某种方式使用此属性.
you have to implement it, if you use IDataErrorInfo
in the first place, but what is it good for? all the examples i saw just returned null instead of using this property somehow.
推荐答案
public virtual string Error {
get {
string result = this[string.Empty];
if (result != null && result.Trim().Length == 0) {
result = null;
}
return result;
}
}
问题是,我不知道"this []"是什么.它不是数组吗? :confused:
但是无论如何..再次只有null返回.
那么这个错误字符串怎么了?仍然没有得到它
the thing is, i dont know what "this[]" is. its not an array right ? :confused:
but anyway .. again only null returns.
so whats the matter with this Error string? still dont get it
这篇关于IDataErrorInfo.Error有什么用处?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!