Hello,
I've run across a proble with "using" statements. It looks like the parser doesn't recognize them - here is a snippet:I don't think it is a big problem, but just want you to know.
Thanks,
Alex
I've run across a proble with "using" statements. It looks like the parser doesn't recognize them - here is a snippet:
using System;
using System.Drawing;
using System.Windows.Forms;
namespace TEST
{
using MyButton = Button;
class Foo
{
void Do()
{
Button b;
MyButton b1;
b1.
}
}
}
Thanks,
Alex