I am writing a plugin for notepad++ on c#. My plugin creates a tree to represents the stucture of some specific text-files. I have some problems calling functions with paramets like (char* text). Could you help mw with this problem ?
for example
SCI_GETLINE(int line, char *text)
{
string st="";
Win32.SendMessage(curScintilla, SciMsg.SCI_GETLINE, (int)line, st);
}
such way of calling raise Not valid string format exeption.