public void AppendText(this RichTextBox box, string text, Color color)
{
box.SelectionStart = box.TextLength;
box.SelectionLength = 0;
box.SelectionColor = color;
box.AppendText(text);
box.SelectionColor = box.ForeColor;
}
它是public static void
但后来我在 Form1 的这一行出现了错误:
public partial class Form1 : Form
错误在 Form1 上说:
错误扩展方法必须在非泛型静态类中定义
如果我从函数中删除静态,我在 AppendText 上遇到错误说:
错误扩展方法必须是静态的
我该如何处理?