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 […]
Go modules are a tool to include dependencies with your project. They do not replace the need for the GOROOT or GOPATH, but they help managing the packages that you use, like npm in NodeJS. […]
Out of the box, Rust only comes with couple of assert options: First thing – Rust macros have the exclamation mark at the end, and the assertions macro are no different. Unlike the regular annoyance […]
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 […]