using System.Text;
public static class ClipboardFusionHelper
{
public static string ProcessText(string text)
{
var sB = new StringBuilder();
// Append each string to new line
sB.AppendLine("Your text");
sB.AppendLine("Some other text");
sB.AppendLine("And other");
// Append numbers or text to one line
sB.Append("...").Append(123).Append(456);
// Paste all text to current active window
BFS.Clipboard.PasteText(sB.ToString());
return null;
}
}