using System;
using Ardalis.Extensions.StringManipulation;
var text = "Hello";
var repeated = text.Repeat(3);
Console.WriteLine(repeated);