C# Equivalent for C++ Macros and using Auto<> Properties

后端 未结 7 2213
忘了有多久
忘了有多久 2021-02-20 15:55

I have some auto-instantiation code which I would like to apply to about 15 properties in a fairly big class. The code is similar to the following but the type is differ

7条回答
  •  盖世英雄少女心
    2021-02-20 16:53

    Even though it doesn't directly solve your problem, you could have a look at the new Lazy class that ships with .NET 4.0. It is specifically designed for lazy initialization scenarios.

提交回复
热议问题