Cannot implicitly convert type 'void' to 'System.Collections.Generic.ICollection'

Merhaba ;

Bir list Colleciton 'a object eklemek istediğinizde  aşağıdaki hatayı alıyorsanız ;


Örnek ;
 ... Images = new List<Image>().Add( new Image() { Image = "name", ImageId = 1 }) ...

Hata ;
Cannot implicitly convert type 'void' to 'System.Collections.Generic.ICollection<xxx>'


Add methodu void olduğundan hata verecektir. Yapmanız gereken Add methodunu silip {} parantez kulanmalısınız;

....Images = new List<Image>() { new Image() { Image = "name", ImageId = 1 }}...


İyi çalışmalar

Yorumlar

Bu blogdaki popüler yayınlar

An error occurred while updating the entries. See the inner exception for details.

Unable to load the specified metadata resource.