KSkarthik suryadevarainkarthik2022.hashnode.dev路Sep 22, 2023 路 7 min readUnifying React Development: Patterns You Should KnowIntroduction React is one of today's most popular JavaScript frameworks, and for good reason. It offers both flexibility and ease of use. By "flexibility," I mean that React provides multiple ways to accomplish the same task. For instance, you can fe...00
KSkarthik suryadevarainkarthik2022.hashnode.dev路Dec 11, 2022 路 2 min readLINQ in C#LINQ (Language Integrated Query) is a query syntax that is used to query from a collection or data source, the query syntax is very similar to SQL. LINQ aims to solve the complexity involved with filtering, sorting and other operations with its easy ...00
KSkarthik suryadevarainkarthik2022.hashnode.dev路Dec 4, 2022 路 2 min readDelegates in c#a delegate holds a reference to functions and by calling a delegate we can call all the functions it references. Take a look at the code below to have a better picture, public static class Main { // delegate delegate void MessagePrinter(string...01