proporty syntax dosn't work for static memebers (under some cases)
BCS
ao at pathlink.com
Thu May 24 16:35:19 PDT 2007
Reply to BCS,
>
> this works:
>
> struct S {}
> void F(S[] s){}
> void main()
> {
> S[] s;
> s.F();
> }
> so why shouldn't this
>
> struct S {}
> void F(S s){}
> void main()
> {
> S s;
> s.F();
> }
Even C# is going to make this work!
http://feeds.haacked.com/~r/haacked/~3/119423736/ruby-like-syntax-in-c-3.0.aspx
I'd realy like to see this
More information about the Digitalmars-d-bugs
mailing list