1
vote
8answers
117 views
Why don’t statements that don’t do anything throw an exception (or warn the developer)?
I've been bitten a couple of times by statements in VB.NET (not sure if this effect exists in C#) that appear to be self-referencing, but when they're executed, they don't actually do anything because …
2
votes
2answers
57 views
Syntax (probably BNF) spec of VBA ?
Hi,
I have to maintain a portion of Access 2003 VBA code, which is not my primary programming language, and while I'm pretty solid on doing regular stuff, I would still like to have a pure spec of …
6
votes
6answers
263 views
Questions about Structs
MSDN says that a class that would be 16 bytes or less would be better handled as a struct [citation].
Why is that?
Does that mean that if a struct is over 16 bytes it's less efficient than a class or …
