Static variables in C#

前端 未结 5 693
梦如初夏
梦如初夏 2021-01-17 11:28

In C#, is there a way to put a static variable in a method like VB.Net?

Static myCollection As Collection
5条回答
  •  清歌不尽
    2021-01-17 11:49

    No there isn't but how is this different then having a static variable at the class level?

    Actually if you look into how shared is implemented, it is a compiler trick that creates a static field on the class.

提交回复
热议问题