Error CS0201 Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement
the code =
private void addIntel(string label, string kind, string detail, string insertText)
{
"\"" + label + "\"";
"\"" + kind + "\"";
"\"" + detail + "\"";
"\"" + insertText + "\"";
this.webBrowser1.Document.InvokeScript("AddIntellisense", new object[]
{
label,
kind,
detail,
insertText
});
}