ExtensionMethods
less than a minute
What are extension methods?
Extensions methods can be applied to a specific data type. They are methods which can be called on this specific type.
For Example:
string blub = "Hello World";
if(blub.IsNotNullOrEmpty)
{
Console.WriteLine("The method returned true");
}
Last modified January 14, 2023: 🔀 Merge pull request #27 from LNA-DEV/dev (c5bd3c9)