When should I use a struct rather than a class in C#?

前端 未结 28 3044
予麋鹿
予麋鹿 2020-11-21 11:55

When should you use struct and not class in C#? My conceptual model is that structs are used in times when the item is merely a collection of value types. A way to

28条回答
  •  后悔当初
    2020-11-21 12:08

    I think a good first approximation is "never".

    I think a good second approximation is "never".

    If you are desperate for perf, consider them, but then always measure.

提交回复
热议问题