using System;
using System.Text;
using System.Collections.Generic;
public static class ClipboardFusionHelper
{
public static string ProcessText(string text)
{
//copy whatever is selected to the clipboard
//this will allow this macro to be used more quickly
text = BFS.Clipboard.CopyText();
if (text.Contains("\\"))
{
return text = text.Replace("\\", "/");
}
//paste the StringBuilder
BFS.Clipboard.PasteText(text);
return text;
}
}