In .NET, do the number of methods or the size of the methods (i.e., amount of code) within an object affect the amount of memory the object uses when it is instantiated?
EXAMPLE: Will an object with 3 int properties and 1 method take up more memory than an object with 3 int properties and 20 methods?
If "yes", do static methods take up less memory?
Please note: I realise that actually calling a method might instantiate other objects or variables that will use memory - my question simply relates to how much memory they use after calling the constructor.