Dec. 27th, 2009
(no subject)
Dec. 27th, 2009 04:30 pmВыскочила преинтереснейшая ошибка компилляции:
Error 8 'System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,Motorola.DVR.Services.ICameraControlServiceCallback>>' does not contain a definition for 'Count' and no extension method 'Count' accepting a first argument of type 'System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,Motorola.DVR.Services.ICameraControlServiceCallback>>' could be found (are you missing a using directive or an assembly reference?) Z:\KERNEL\LCD_UI\Code\Motorola.DVR.DVRPlayer\ExternalSources\DvrMain.Stub\Presenters\CameraControlServiceStubPresenter.cs 21 71 DVRMain.Stub
Надо было: в голову файла, где описывается метод
добавить using System.Linq;.
protected override int GetSubscribedClientsCount()
{
return (SvcInstance as CameraControlServiceStub).SubscribedClients.Count();
}