public void myMethod(string test)
{
string mytext = "DataGridViewHitTestType"; // the text u want to copy
Clipboard.Clear();//Clearing the clipboard
Clipboard.SetText(test);
}
public int copycodetoboard(string copy)
{
Thread t = new Thread(() => myMethod(copy));
t.ApartmentState = ApartmentState.STA;
t.Start();
return 1;
}
copycodetoboard("")
ボタンクリックで関数を呼び出しています
ローカルでは問題なく動作していますが、アップロード後は動作しません