using System;
using System.Collections.Generic;
// CTRL+SPACE
public static class ClipboardFusionHelper{
public static string ProcessText( string text ){
text = text.Replace( " ", "" );
return text;
}
}
How I can paste the text without press CTRL+v.
I will only press CTRL+SPACE to to remove spaces and paste.