다음과 같은 방법이 있습니다.
public bool IsValid
{
get { return (GetRuleViolations().Count() == 0); }
}
public IEnumerable<RuleViolation> GetRuleViolations(){
//code here
}
.Count()
위에서 할 때 빨간색 밑줄이 그어진 이유는 무엇 입니까?
다음과 같은 오류가 발생했습니다.
오류 1 'System.Collections.Generic.IEnumerable'에 'Count'에 대한 정의가 포함되어 있지 않으며 'System.Collections.Generic.IEnumerable'유형의 첫 번째 인수를 허용하는 확장 메서드 'Count'를 찾을 수 없습니다. 지시문 또는 어셈블리 참조를 사용합니까?) c : \ users \ a \ documents \ visual studio 2010 \ Projects \ NerdDinner \ NerdDinner \ Models \ Dinner.cs 15 47 NerdDinner