using System;
using System.Collections.Generic;
public static class ClipboardFusionHelper
{
public static string ProcessText(string text)
{
// Get the text for the new History item
string newHistoryItem = BFS.Dialog.GetUserInput("Please enter the text for the new History item:", "");
// Add the new History item
BFS.ClipboardFusion.AddHistoryText(newHistoryItem);
// Put the text on the clipboard as well
return newHistoryItem;
}
}