Does structs have type objects created in heap? [duplicate]
问题 This question already has answers here : Where the 'Type' of a reference value is stored in memory? (3 answers) Do value types have Type objects? (2 answers) Closed 19 days ago . I am reading a book which shows how a class instance is created in heap as the picture below shows: internal class Employee { public Int32 GetYearsEmployed() { ... } public virtual String GetProgressReport() { ... } public static Employee Lookup(String name) { ... } } internal sealed class Manager : Employee { public