C# anonymous class
While C# has both classes and structures (that are not the same as the one in C++) They also have an interesting creature, the anonymous class. What is that? The anonymous class is there to […]
While C# has both classes and structures (that are not the same as the one in C++) They also have an interesting creature, the anonymous class. What is that? The anonymous class is there to […]
C# has an interesting delegate option, Func. Func is nothing but a syntactic sugar over classic delegate template, but it does make it simple to process and to read. If we have the following code […]
C# extension methods are a little bit like magic: it enables you to add functionality to an already existing object, without creating a new class. If we have a string object, that we use as […]