간단한 Microsoft 오류 메시지로 완전히 혼란 스럽습니다.기본 악세사리 필요 : Custom ConfigurationSection
내가 (다시 사용자 지정 ConfigurationElement 개체 및 사용자 정의 ConfigurationElementCollection을뿐만 아니라, 여러 ConfigurationProperties을 사용) 사용자 정의없는 ConfigurationSection, 나는 다음과 같은 오류 메시지가 얻을 포함하는 어셈블리에 대해 XSD.exe를 실행하면 :
을Error: There was an error processing 'Olbert.Entity.Utils.dll'.
- There was an error reflecting type 'Olbert.Entity.DatabaseConnection'.
- You must implement a default accessor on System.Configuration.ConfigurationLockCollection because it inherits from ICollection.
은 그러나 문제의 클래스는 기본 접근이 있습니다
public object this[int idx]
{
get { return null; }
set { }
}
나는 위에서 아무것도하지 않습니다 실현,하지만 난 인덱스로 요소의 속성에 액세스 할 필요가 없습니다. 나는 단지 오류 메시지를 해결하려고 노력하고있다.
무슨 일 이니?
문제를 복제하는 코드 스 니펫을 추가 할 수 있습니까? –