How to create an extension method in C#
Extension methods are methods that add additional functionality to any C# type without creating a new derived type or modifying the original type.
Format of Extension methods in C
public static class NameOfTheClass
{
public static ReturnType(this...
tkarropoulos.hashnode.dev2 min read