Project Description
This will help you with your c# applications to fix a lot of things
//Above using redHorn; //InLine public static RedHorn fixthings; public static void Main(string[] args) { Console.WriteLine("Hello World!"); fixthings = new RedHorn(); string text = "Hello World"; Console.WriteLine("Orginal: "+ text); //Will display text with much spaces string fixedText = fixthings.Trim(text); Console.WriteLine("Fix Method1: " + fixedText); //Will display text with less spaces fixthings.Trim(ref text); Console.WriteLine("Fix Method2: " +text); //Will also display text with less spaces Console.Write("Press any key to continue . . . "); Console.ReadKey(true); }