For variables declared in C# foreach loops, the definition line is not quite correct. For example, for a statement foreach( object ICQObject in D ) { }
the definition looks like: object ICQObject D
This is weird. You should either show the complete foreach text ("object ICQObject in D") or simply "object ICQObject". |