0
我正在探索移植Silverlight的System.ComponentModel.DataAnnotations到桌面的可能性,以便重用在我的Silverlight業務對象中完成驗證(不要問...)。CachedAnonymousMethodDelegate1從代碼反彙編代碼
的問題是我得到這樣的代碼......
// Methods
protected ValidationAttribute() : this(CS$<>9__CachedAnonymousMethodDelegate1)
{
if (CS$<>9__CachedAnonymousMethodDelegate1 == null)
{
CS$<>9__CachedAnonymousMethodDelegate1 = new Func<string>(null, (IntPtr) <.ctor>b__0);
}
}
protected ValidationAttribute(Func<string> errorMessageAccessor)
{
this._syncLock = new object();
this._errorMessageResourceAccessor = errorMessageAccessor;
}
protected ValidationAttribute(string errorMessage) : this(new Func<string>(class2, (IntPtr) this.<.ctor>b__2))
{
}
反正是有,我可以解決此問題?