Код: Выделить всё
using System;
using System.Windows.Forms;
public class CPHInline
{
public bool Execute()
{
string code = Clipboard.GetText();
//Following 4 lines with text are not releveant, they add the region the code is for and will save it in the program itself and post a chat message.
string input = args["rawInput"].ToString();
string lobbyCode = $"{input} {code}";
CPH.SetTwitchUserVar(userName, "Phasmo code", lobbyCode, true);
CPH.SendMessage("Code has been read from clipboard and is now stored in a variable! ✅ ", true);
return true;
}
}
Подробнее здесь: https://stackoverflow.com/questions/787 ... o-variable