[Mono-list] Testing GTK# with Glade

Pokey the Penguin pokey@linuxmail.org
25 Jan 2003 21:08:24 +0000


On Sat, 2003-01-25 at 23:56, Eduardo wrote:
> [GladeWidget]		// 31
> Button button1;		// 32

[GladeWidget] and Button button1; are conceptually on the same line;
they are part of a single statement. A statement cannot contain
comments.

Similarly, this wouldn't work:
Button //foo
button1;

But this would:
[GladeWidget] Button button1;