Opinion Poll не печата на конзолата
Здравейте, като използвам linq върху list не печата нищо на конзолата. Ако махна linq-a и печата и нз какво става ?
Като филтрирам листа с Linq в нов лист и дебъгна виждам че нищо не се пълни в новия лист
https://pastebin.com/wRudRYJ6 Main method
https://pastebin.com/P7jiKC7n Person класът ми е добавен с референция от друг project
Main:
Statistics:
Person:
@Axiomatik,
thank you again! In fundamental module you help me so much to take in the classes.
Your class name "Statistics" is better than my class name "People" and in your method "AddStatistics" you don't add the person if list already content person. And I will add this validation in my AddPerson method.
I write properties without return and whitout declare private fields is this bad practice?
Best,
Eli
Setting up properties and private fields will be explained in detail in C#-Advanced and OOP. Usually properties are configured with {get; set;}, while private fields should be validated through public properties. Practise with the exercises and exams and things will start to get clearer in the process.
Best,