Weekly Update - October 25, 2024
Novel

Miscellaneous
I did a free certification on c#, last Saturday. I didn't answer the second question, but I passed the first.
I felt bad, but got a certificate the next morning.
Looks like the first question was more important.

It feels better than getting certificates from beating 10 year olds in chess....

Trivia for those curious if list.count is faster, or list.Count().
Lists: Count vs Count()
Given a list, which method is preferred to determine the number of elements inside? var myList = new List<string>(); myList.Count
myList.Count()

Member discussion