// Latest posts
Blog
Paul Seal's personal blog
Blog posts
75 results found
dotnet
Sorting a list into random order using linq
Every now and again, there is a need to produce a list in a random order. I've found a very reliable way to do this using linq and the Guid class. It might sound complicated, but when you see the example, it should make sense and you should see how simple it is.
dotnet List ForEach MethodYou may or may not be aware of the .ForEach() Method which is available on List<T> objects. It is very handy for shortening your code. Lets say you want to write a method which returns a list of MailAdress objects. A more traditional way would be to do the following:
dotnet Null-coalescing OperatorShorter code for using the value of a nullable object or another value if not.