Deathwing
<Bronze Donator>
Without manual memory management, do you really need const?I usually write mine as C with a cpp extension, but I do like const. C has const though right? Can't remember.
The second place I worked was really into doing stuff like const someStruct * const. You could pass it a pointer to someStruct in memory and know that the function wasn't going to mess with the pointer itself or the contents. I think. It's been awhile.
C# doesn't have const other than lame const variables which are just sort of like #defines in C.