ExtentionMethods
using System;
namespace ExtensionMethods
{
public static class StringExtensions
{
// This method adds a `PrintWithStars` method to the string type
public static void PrintWithStars(this string str)
{
Console.WriteLine("*** " + str + " ***");
}
}
}