This is probably a stupid question, but does object Properties occupy any memory per instance?
As I\'ve understand it when you instantiate an object each value field
Properties are just like ordinary methods in that respect.
The code needs to be stored somewhere (once per Type) and any fields that are used (Auto properties!) need to be stored per instance. Local variables will also take up some memory.